From b6c8ea6dd41522e20b7c13ca025431c53796af13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zaoral?= Date: Wed, 26 Feb 2025 10:35:53 +0100 Subject: [PATCH 1/2] ci: remove Ubuntu 20.04 jobs ... because these images are deprecated and will be unsupported by April. Related: https://github.com/actions/runner-images/issues/11101 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7160a5..81995eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: compiler: [clang, gcc] - version: [20.04, 22.04] + version: [22.04] runs-on: ubuntu-${{ matrix.version }} env: From 4293c8cf00835b7cb9d29bdb8daff5631994f4b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zaoral?= Date: Wed, 26 Feb 2025 10:36:24 +0100 Subject: [PATCH 2/2] ci: add Ubuntu 24.04 jobs --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81995eb..bc32d3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,12 @@ on: jobs: ubuntu: - name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 22.04 && ' with sanitizers' || '' }}) + name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 24.04 && ' with sanitizers' || '' }}) strategy: fail-fast: false matrix: compiler: [clang, gcc] - version: [22.04] + version: [22.04, 24.04] runs-on: ubuntu-${{ matrix.version }} env: @@ -38,7 +38,7 @@ jobs: - name: Build and check run: | - if [[ "${{ matrix.version }}" == 22.04 ]]; then + if [[ "${{ matrix.version }}" == 24.04 ]]; then make distcheck-sanitizers else make distcheck