From 6b432d3fbdf1d231c941969f4e113c38c7b52dbe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Tue, 15 Apr 2025 17:17:38 +0200 Subject: [PATCH] ci: update gcc to version 14 MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Also drop the note about GCC which is obsolete. Skip the coveralls job as it does not yet support GCC 14. Signed-off-by: Thomas Weißschuh --- .github/workflows/cibuild.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 2d43d1d1d..598d11025 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -27,9 +27,8 @@ jobs: fail-fast: false matrix: env: - # gcc-13 has false-positives with ubsan - - { COMPILER: "gcc", COMPILER_VERSION: "13", SANITIZE: "yes" } - - { COMPILER: "gcc", COMPILER_VERSION: "13", SANITIZE: "no" } + - { COMPILER: "gcc", COMPILER_VERSION: "14", SANITIZE: "yes" } + - { COMPILER: "gcc", COMPILER_VERSION: "14", SANITIZE: "no" } - { COMPILER: "clang", COMPILER_VERSION: "20", SANITIZE: "yes" } - { COMPILER: "clang", COMPILER_VERSION: "20", SANITIZE: "no" } env: ${{ matrix.env }} @@ -86,7 +85,7 @@ jobs: cancel-in-progress: true env: COMPILER: gcc - COMPILER_VERSION: 13 + COMPILER_VERSION: 14 SANITIZE: no steps: - name: Repository checkout @@ -106,7 +105,7 @@ jobs: cancel-in-progress: true env: COMPILER: gcc - COMPILER_VERSION: 13 + COMPILER_VERSION: 14 SANITIZE: no TRANSLATE_MANPAGES: yes steps: @@ -171,7 +170,7 @@ jobs: distro: ubuntu_latest run: | export COMPILER=gcc - export COMPILER_VERSION=13 + export COMPILER_VERSION=14 export SANITIZE=no export QEMU_USER=1 -- 2.47.2