.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:
Max Kellermann 2024-07-05 17:17:16 +02:00
parent 404e1c3912
commit 473fb4e19f
1 changed files with 4 additions and 4 deletions

View File

@ -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