mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
test-compile: Use clang-18 and gcc-14
The 'newest' compilers are actually not all that new, they're just the default for the image. Instead provide explicit versions.
This commit is contained in:
parent
29e8812bab
commit
6ff5823d6a
6
.github/workflows/test-compile.yml
vendored
6
.github/workflows/test-compile.yml
vendored
|
@ -33,8 +33,8 @@ jobs:
|
||||||
- 'clang-14'
|
- 'clang-14'
|
||||||
- 'gcc-10'
|
- 'gcc-10'
|
||||||
# newest
|
# newest
|
||||||
- 'clang'
|
- 'clang-18'
|
||||||
- 'gcc'
|
- 'gcc-14'
|
||||||
include:
|
include:
|
||||||
# macOS
|
# macOS
|
||||||
- os: macos-13
|
- os: macos-13
|
||||||
|
@ -72,7 +72,7 @@ jobs:
|
||||||
|
|
||||||
# maximum standard, only on newest compilers
|
# maximum standard, only on newest compilers
|
||||||
- name: Build C++20
|
- name: Build C++20
|
||||||
if: ${{ matrix.compiler == 'clang' || matrix.compiler == 'gcc'}}
|
if: ${{ matrix.compiler == 'clang-18' || matrix.compiler == 'gcc-14' }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
make config-$CC_SHORT
|
make config-$CC_SHORT
|
||||||
|
|
Loading…
Reference in a new issue