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 }} - -