.github/workflows/build.yml: update GCC 11 build to GCC 14
We only need the oldest supported compiler (i.e. GCC 10) and the newest one available in the runner (i.e. GCC 14).
This commit is contained in:
parent
404e1c3912
commit
473fb4e19f
|
@ -33,12 +33,12 @@ jobs:
|
|||
build-linux:
|
||||
strategy:
|
||||
matrix:
|
||||
compiler: [gcc11, gcc10]
|
||||
compiler: [gcc14, gcc10]
|
||||
include:
|
||||
- compiler: gcc11
|
||||
- compiler: gcc14
|
||||
os: ubuntu-24.04
|
||||
cc: gcc-11
|
||||
cxx: g++-11
|
||||
cc: gcc-14
|
||||
cxx: g++-14
|
||||
- compiler: gcc10
|
||||
os: ubuntu-24.04
|
||||
cc: gcc-10
|
||||
|
|
Loading…
Reference in New Issue