aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf W. Grosse-Kunstleve <rwgk@google.com>2023-06-24 12:12:35 -0700
committerGitHub <noreply@github.com>2023-06-24 12:12:35 -0700
commite10da79b6ee2554be364ef14df1c988f94df02ea (patch)
tree47078541d286c70d2f560703a5eae7fc8140f0e0
parentbc1bcf7c05b6097c2f0c993a776a975d7332f279 (diff)
downloadpybind11-e10da79b6ee2554be364ef14df1c988f94df02ea.tar.gz
Undo ci.yml gcc10 workaround after docker-library/gcc#95 was resolved. (#4717)
The gcc10 workaround was introduced with PR #4705.
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1d61ad6a..0d640141 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -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