1
0
Fork 0

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.
pull/12994/head
glx22 2024-10-13 22:34:33 +02:00 committed by Loïc Guilloux
parent 1a1cd2d495
commit 45aef2c0b9
2 changed files with 3 additions and 3 deletions

View File

@ -26,8 +26,8 @@ jobs:
matrix: matrix:
include: include:
- name: Clang - name: Clang
compiler: clang-15 compiler: clang
cxxcompiler: clang++-15 cxxcompiler: clang++
libraries: libsdl2-dev libraries: libsdl2-dev
- name: GCC - SDL2 - name: GCC - SDL2
compiler: gcc compiler: gcc

View File

@ -23,7 +23,7 @@ jobs:
linux: linux:
name: CI name: CI
runs-on: ubuntu-latest runs-on: ubuntu-24.04
env: env:
CC: ${{ inputs.compiler }} CC: ${{ inputs.compiler }}
CXX: ${{ inputs.cxxcompiler }} CXX: ${{ inputs.cxxcompiler }}