Skip to content

Commit 429f5f9

Browse files
committed
add gcc 14; use it for metapackages
1 parent 27ca0e5 commit 429f5f9

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- {compiler: gcc, version: 11}
2828
- {compiler: gcc, version: 12}
2929
- {compiler: gcc, version: 13}
30+
- {compiler: gcc, version: 14}
3031
exclude:
3132
- os: macos-13
3233
toolchain: {compiler: gcc, version: 13}

.github/workflows/meta.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,10 @@ jobs:
4949
- name: Checkout code
5050
uses: actions/checkout@v4
5151

52-
- name: (Ubuntu) setup gcc version
53-
if: contains(matrix.os,'ubuntu')
54-
run: |
55-
echo "GCC_V=10" >> $GITHUB_ENV
56-
57-
- name: (macOS) setup gcc version
58-
if: contains(matrix.os,'macos')
59-
run: |
60-
echo "GCC_V=13" >> $GITHUB_ENV
52+
- name: (Ubuntu/macOS) setup gcc version
53+
if: contains(matrix.os,'ubuntu') || contains(matrix.os,'macos')
54+
run: |
55+
echo "GCC_V=14" >> $GITHUB_ENV
6156
6257
- name: (Windows) Install MSYS2
6358
uses: msys2/setup-msys2@v2

0 commit comments

Comments
 (0)