From 45aef2c0b98d02a3ff5b1fdefe28c4673ff40726 Mon Sep 17 00:00:00 2001 From: glx22 Date: Sun, 13 Oct 2024 22:34:33 +0200 Subject: [PATCH] Change: [CI] Temporarily force ubuntu-24.04 runner for linux workflow While ubuntu-latest is transitioning from ubuntu-22.04 to ubuntu-24.04, the one we actually run on is random. But our workflow can work only with 22.04 (using clang15) or 24.04 (using clang) so just force 24.04 for now. --- .github/workflows/ci-build.yml | 4 ++-- .github/workflows/ci-linux.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index d7e42a3d17..8805550968 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -26,8 +26,8 @@ jobs: matrix: include: - name: Clang - compiler: clang-15 - cxxcompiler: clang++-15 + compiler: clang + cxxcompiler: clang++ libraries: libsdl2-dev - name: GCC - SDL2 compiler: gcc diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index bfe345412a..63bf1e18db 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -23,7 +23,7 @@ jobs: linux: name: CI - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 env: CC: ${{ inputs.compiler }} CXX: ${{ inputs.cxxcompiler }}