From d0806be1ce9475da78f17c72d118ab446e4a855e Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 14 Aug 2022 14:28:41 +0200 Subject: [PATCH] :alembic: try official GCC containers --- .github/workflows/ubuntu.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 9027db92e..80ba548d4 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -99,11 +99,11 @@ jobs: steps: - uses: actions/checkout@v3 - name: Install CMake - run: apt-get update ; apt-get install -y cmake + run: wget https://github.com/Kitware/CMake/releases/download/v3.24.0/cmake-3.24.0-linux-x86_64.tar.gz ; tar xfz cmake-3.24.0-linux-x86_64.tar.gz - name: Run CMake - run: mkdir build ; cd build ; cmake .. -DJSON_CI=On + run: cmake-3.24.0-linux-x86_64/bin/cmake -S . -B build -DJSON_CI=On - name: Build - run: cd build ; cmake --build . --target ci_test_compiler_default + run: cmake-3.24.0-linux-x86_64/bin/cmake --build build --target ci_test_compiler_default # ci_test_compilers: # runs-on: ubuntu-latest