diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2025-01-17 22:09:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-17 22:09:34 +0100 |
commit | 2b250707b5034502c26b634b2e8979f55b78fc13 (patch) | |
tree | dd7cbac2fd4ed5abe2c8a93d072ef4d9475785cd | |
parent | 949bff774168573e8105c3a6ea2a116a6a14796c (diff) |
CI: remove support for ubuntu-20.04 (#2683)
This Ubuntu version is going to be deprecated.
See: https://github.com/actions/runner-images/issues/11101
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b5f06ab1..917083f95 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,7 @@ jobs: fail-fast: true matrix: # macos-14 and 15 are on **ARM64** - os: ["ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04", "macOS-13", "macOS-14", "macOS-15", "ubuntu-22.04-arm", "ubuntu-24.04-arm"] + os: ["ubuntu-22.04", "ubuntu-24.04", "macOS-13", "macOS-14", "macOS-15", "ubuntu-22.04-arm", "ubuntu-24.04-arm"] gcrypt: ["--with-local-libgcrypt", ""] compiler: ["cc"] pcre: [""] @@ -87,7 +87,7 @@ jobs: global_context: [""] # Enable by default include: - compiler: "gcc-4.9" # "Oldest" gcc easily available. To simulate RHEL7 - os: ubuntu-20.04 + os: ubuntu-22.04 gcrypt: "" pcre: "--with-pcre2" maxminddb: "--with-maxminddb" @@ -100,8 +100,8 @@ jobs: maxminddb: "--with-maxminddb" msan: "--with-sanitizer" nBPF: "" - - compiler: "clang-9" # "Oldest" clang easily available - os: ubuntu-20.04 + - compiler: "clang-12" # "Oldest" clang easily available + os: ubuntu-22.04 gcrypt: "" pcre: "--with-pcre2" maxminddb: "--with-maxminddb" @@ -171,9 +171,9 @@ jobs: make cd - - name: Setup Ubuntu specified compiler - if: startsWith(matrix.os, 'ubuntu-20.04') && ! startsWith(matrix.compiler, 'cc') + if: startsWith(matrix.os, 'ubuntu-22.04') && ! startsWith(matrix.compiler, 'cc') run: | - # For gcc-4.9 (on ubuntu-20.04) + # For gcc-4.9 (on ubuntu-22.04) echo "deb http://dk.archive.ubuntu.com/ubuntu/ xenial main" | sudo tee -a /etc/apt/sources.list echo "deb http://dk.archive.ubuntu.com/ubuntu/ xenial universe" | sudo tee -a /etc/apt/sources.list sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 40976EAF437D05B5 |