From 0be2be8289a80d0209e7f2fe1abd45e5be928ed0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Wed, 31 Jan 2024 15:29:48 +0100 Subject: [PATCH] ci: consistently use gcc 13 during CI MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Some configurations where not migrated from 10 to 13. The coveralls configuration stays on gcc 10 as the coverage data generated by the compiler needs to be compatible with the installed version of gcov. Signed-off-by: Thomas Weißschuh --- .github/workflows/cibuild.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index 3e5ea0aad9..3686ebc7cb 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -86,7 +86,7 @@ jobs: cancel-in-progress: true env: COMPILER: gcc - COMPILER_VERSION: 10 + COMPILER_VERSION: 13 SANITIZE: no steps: - name: Repository checkout @@ -106,7 +106,7 @@ jobs: cancel-in-progress: true env: COMPILER: gcc - COMPILER_VERSION: 10 + COMPILER_VERSION: 13 SANITIZE: no TRANSLATE_MANPAGES: yes steps: @@ -170,7 +170,7 @@ jobs: distro: ubuntu_latest run: | export COMPILER=gcc - export COMPILER_VERSION=10 + export COMPILER_VERSION=13 export SANITIZE=no export QEMU_USER=1 -- 2.47.2