Skip to content

Commit

Permalink
Undo ci.yml gcc10 workaround after docker-library/gcc#95 was resolved. (
Browse files Browse the repository at this point in the history
#4717)

The gcc10 workaround was introduced with PR #4705.
  • Loading branch information
rwgk committed Jun 24, 2023
1 parent bc1bcf7 commit e10da79
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e10da79

Please sign in to comment.