Skip to content

Commit e32a84a

Browse files
authored
Merge pull request #599 from ChinYikMing/ci-macOS-gcc-15
CI: Bump gcc on macOS host
2 parents e418b67 + 2c475db commit e32a84a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ jobs:
337337
strategy:
338338
fail-fast: false
339339
matrix:
340-
compiler: [gcc-14, clang]
340+
compiler: [gcc-15, clang]
341341
runs-on: macos-latest # M1 chip
342342
steps:
343343
- uses: actions/checkout@v4
@@ -366,9 +366,9 @@ jobs:
366366
EXIT_CODE=\$?; \
367367
sudo env TMP_FILE=\${TMP_FILE} BLK_DEV=\${BLK_DEV} .ci/boot-linux-prepare.sh cleanup; \
368368
exit \${EXIT_CODE};" >> "$GITHUB_ENV"
369-
- name: Symlink gcc-14 due to the default /usr/local/bin/gcc links to system's clang
369+
- name: Symlink gcc-15 due to the default /usr/local/bin/gcc links to system's clang
370370
run: |
371-
ln -s /opt/homebrew/opt/gcc/bin/gcc-14 /usr/local/bin/gcc-14
371+
ln -s /opt/homebrew/opt/gcc/bin/gcc-15 /usr/local/bin/gcc-15
372372
- name: fetch artifact first to reduce HTTP requests
373373
env:
374374
CC: ${{ steps.install_cc.outputs.cc }}

0 commit comments

Comments
 (0)