Skip to content

Commit

Permalink
CI: Use GCC-13 for compatibility testing with a recent GCC.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Oct 17, 2024
1 parent 0e7954f commit bc33ca6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,26 +65,26 @@ jobs:
backend: c
env: { NO_CYTHON_COMPILE: 1 }
allowed_failure: true
# GCC 11 (with broad language standards)
# GCC 13 (with broad language standards)
- os: ubuntu-22.04
python-version: "3.9"
backend: c
env: { GCC_VERSION: 11, EXTRA_CFLAGS: "-std=c99" }
env: { GCC_VERSION: 13, EXTRA_CFLAGS: "-std=c99" }
extra_hash: "-c99"
- os: ubuntu-22.04
python-version: "3.10"
backend: c
env: { GCC_VERSION: 11, EXTRA_CFLAGS: "-std=c17" }
env: { GCC_VERSION: 13, EXTRA_CFLAGS: "-std=c17" }
extra_hash: "-gcc11"
- os: ubuntu-22.04
python-version: "3.12"
backend: c
env: { GCC_VERSION: 11, EXTRA_CFLAGS: "-std=c17" }
env: { GCC_VERSION: 13, EXTRA_CFLAGS: "-std=c17" }
extra_hash: "-gcc11"
- os: ubuntu-22.04
python-version: "3.12"
python-version: "3.13"
backend: cpp
env: { GCC_VERSION: 11, EXTRA_CFLAGS: "-std=c++20" }
env: { GCC_VERSION: 13, EXTRA_CFLAGS: "-std=c++20" }
extra_hash: "-gcc11"
# compile all modules
- os: ubuntu-22.04
Expand Down

0 comments on commit bc33ca6

Please sign in to comment.