From f2b157fdc3eb05e2cafc02c8239d97940ed1a11c Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Sat, 28 Dec 2024 09:13:37 +0100 Subject: [PATCH] CI: use newer gcc to catch more errors --- .github/workflows/generate-tools.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate-tools.yaml b/.github/workflows/generate-tools.yaml index 8837ff75..45066129 100644 --- a/.github/workflows/generate-tools.yaml +++ b/.github/workflows/generate-tools.yaml @@ -17,6 +17,7 @@ jobs: triplet: x64-windows - os: ubuntu-latest triplet: x64-linux + CMAKE_CC: CC=gcc-14 - os: macos-latest triplet: x64-osx env: @@ -28,7 +29,7 @@ jobs: - uses: lukka/get-cmake@latest - name: Configure CMake - run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} + run: ${{ matrix.CMAKE_CC }} cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} - name: Build with CMake run: cmake --build _build --config Debug --parallel