From 21aac2eaf8708a8861d22643faf4a0b72dd0fa57 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 16 Jun 2023 16:12:01 -0700 Subject: [PATCH] Try gcc:10-bullseye (because gcc:10 is broken: https://github.com/docker-library/gcc/issues/95) --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe1cb8e6c1..44847d5afe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -455,17 +455,19 @@ jobs: strategy: fail-fast: false matrix: + container_suffix: + - "" include: - { gcc: 7, std: 11 } - { gcc: 7, std: 17 } - { gcc: 8, std: 14 } - { gcc: 8, std: 17 } - - { gcc: 10, std: 17 } + - { gcc: 10, std: 17, container_suffix: "-bullseye" } - { gcc: 11, std: 20 } - { gcc: 12, std: 20 } name: "🐍 3 • GCC ${{ matrix.gcc }} • C++${{ matrix.std }}• x64" - container: "gcc:${{ matrix.gcc }}" + container: "gcc:${{ matrix.gcc }}${{ matrix.container_suffix }}" steps: - uses: actions/checkout@v3