Skip to content

Commit

Permalink
test-compile: Use clang-18 and gcc-14
Browse files Browse the repository at this point in the history
The 'newest' compilers are actually not all that new, they're just the default for the image.  Instead provide explicit versions.
  • Loading branch information
KrystalDelusion authored Nov 25, 2024
1 parent 29e8812 commit 6ff5823
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
- 'clang-14'
- 'gcc-10'
# newest
- 'clang'
- 'gcc'
- 'clang-18'
- 'gcc-14'
include:
# macOS
- os: macos-13
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# maximum standard, only on newest compilers
- name: Build C++20
if: ${{ matrix.compiler == 'clang' || matrix.compiler == 'gcc'}}
if: ${{ matrix.compiler == 'clang-18' || matrix.compiler == 'gcc-14' }}
shell: bash
run: |
make config-$CC_SHORT
Expand Down

0 comments on commit 6ff5823

Please sign in to comment.