From 50f5f3b0b42e7304dc06e9ab3d83bd5831f7ba1b Mon Sep 17 00:00:00 2001 From: David Dight Date: Thu, 22 Feb 2024 15:02:25 +1100 Subject: [PATCH] Update cmake-single-platform.yml --- .github/workflows/cmake-single-platform.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 69b4409..9f3fadc 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -11,16 +11,14 @@ on: env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release + CC: gcc-13 + CXX: g++-13 jobs: linux: runs-on: ubuntu-latest timeout-minutes: 5 - strategy: - matrix: - v: [13] - steps: - uses: actions/checkout@v4 @@ -42,11 +40,3 @@ jobs: # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: ctest -C ${{env.BUILD_TYPE}} - - - - run: cmake --workflow --preset default - env: - CC: gcc-${{ matrix.v }} - CXX: g++-${{ matrix.v }} - -