Undo ci.yml gcc10 workaround after docker-library/gcc#95 was resolved. (#4717)

The gcc10 workaround was introduced with PR #4705.
This commit is contained in:
Ralf W. Grosse-Kunstleve 2023-06-24 12:12:35 -07:00 committed by GitHub
parent bc1bcf7c05
commit e10da79b6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -458,16 +458,16 @@ jobs:
fail-fast: false
matrix:
include:
- { gcc: 7, std: 11, container_suffix: "" }
- { gcc: 7, std: 17, container_suffix: "" }
- { gcc: 8, std: 14, container_suffix: "" }
- { gcc: 8, std: 17, container_suffix: "" }
- { gcc: 10, std: 17, container_suffix: "-bullseye" }
- { gcc: 11, std: 20, container_suffix: "" }
- { gcc: 12, std: 20, container_suffix: "" }
- { gcc: 7, std: 11 }
- { gcc: 7, std: 17 }
- { gcc: 8, std: 14 }
- { gcc: 8, std: 17 }
- { gcc: 10, std: 17 }
- { gcc: 11, std: 20 }
- { gcc: 12, std: 20 }
name: "🐍 3 • GCC ${{ matrix.gcc }} • C++${{ matrix.std }}• x64"
container: "gcc:${{ matrix.gcc }}${{ matrix.container_suffix }}"
container: "gcc:${{ matrix.gcc }}"
steps:
- uses: actions/checkout@v3