From 07eeb6d786606d48663993a5905f344b91ad4c8d Mon Sep 17 00:00:00 2001 From: matt335672 <30179339+matt335672@users.noreply.github.com> Date: Mon, 19 Aug 2024 09:56:44 +0100 Subject: [PATCH] Fix github runner for v0.10 At the time of writing, the github runner for ubuntu-latest is 22.04, but this will change to 24.04 later in the year. This PR fixes the CI runner version at 22.04 for v0.10.x --- .github/workflows/build.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a117bce4..b037e40d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,21 +20,21 @@ jobs: - CC: gcc feature_set: min arch: amd64 - os: ubuntu-latest + os: ubuntu-22.04 unittests: false DISTCHECK: false - CC: g++ feature_set: min arch: amd64 - os: ubuntu-latest + os: ubuntu-22.04 unittests: false DISTCHECK: false - CC: clang feature_set: min arch: amd64 - os: ubuntu-latest + os: ubuntu-22.04 unittests: false DISTCHECK: false @@ -42,21 +42,21 @@ jobs: - CC: gcc feature_set: max arch: amd64 - os: ubuntu-latest + os: ubuntu-22.04 unittests: true DISTCHECK: true - CC: g++ feature_set: max arch: amd64 - os: ubuntu-latest + os: ubuntu-22.04 unittests: false DISTCHECK: false - CC: clang feature_set: max arch: amd64 - os: ubuntu-latest + os: ubuntu-22.04 unittests: true DISTCHECK: true @@ -66,7 +66,7 @@ jobs: - CC: gcc feature_set: max arch: amd64 - os: ubuntu-latest + os: ubuntu-22.04 unittests: true DISTCHECK: false name_extra: and DEBUG @@ -76,7 +76,7 @@ jobs: - CC: gcc feature_set: max arch: i386 - os: ubuntu-latest + os: ubuntu-22.04 unittests: true DISTCHECK: false name_extra: for 32-bit arch (legacy OS) @@ -84,7 +84,7 @@ jobs: - CC: g++ feature_set: max arch: i386 - os: ubuntu-latest + os: ubuntu-22.04 unittests: false DISTCHECK: false name_extra: for 32-bit arch (legacy OS) @@ -92,7 +92,7 @@ jobs: - CC: clang feature_set: max arch: i386 - os: ubuntu-latest + os: ubuntu-22.04 unittests: true DISTCHECK: false name_extra: for 32-bit arch (legacy OS) @@ -160,7 +160,7 @@ jobs: cppcheck: name: cppcheck - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 env: CC: gcc # This is required to use a version of cppcheck other than that @@ -189,7 +189,7 @@ jobs: code_formatting_check: name: code formatting check - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 env: CC: gcc # This is required to use a version of astyle other than that