mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #4767 from YosysHQ/krys/latest-compilers
test-compile: Use newer clang and gcc versions
This commit is contained in:
commit
698c464109
|
@ -32,9 +32,9 @@ jobs:
|
||||||
# oldest supported
|
# oldest supported
|
||||||
- 'clang-14'
|
- 'clang-14'
|
||||||
- 'gcc-10'
|
- 'gcc-10'
|
||||||
# newest
|
# newest, make sure to update maximum standard step to match
|
||||||
- 'clang'
|
- 'clang-18'
|
||||||
- 'gcc'
|
- 'gcc-13'
|
||||||
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-13' }}
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
make config-$CC_SHORT
|
make config-$CC_SHORT
|
||||||
|
|
Loading…
Reference in New Issue