From 473fb4e19f68a47646165a41ac91201a52afbb74 Mon Sep 17 00:00:00 2001 From: Max Kellermann <max.kellermann@gmail.com> Date: Fri, 5 Jul 2024 17:17:16 +0200 Subject: [PATCH] .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). --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4e34bd81..5cee3f8b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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