From 927b1d73ebde7a1010ea243e50d7954d98141176 Mon Sep 17 00:00:00 2001 From: Yaraslau Tamashevich Date: Mon, 23 Sep 2024 23:45:01 +0300 Subject: [PATCH] update gcc version inside build action --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03a5caf..04ae63a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,10 +67,10 @@ jobs: sudo apt -q update sudo apt install -qy ninja-build sudo ./scripts/install-deps.sh - - name: "Install GCC 13" - run: sudo apt install g++-13 + - name: "Install GCC 12" + run: sudo apt install g++-12 - name: "cmake" - run: cmake --preset "$CMAKE_PRESET" -D CMAKE_CXX_COMPILER="g++-13" + run: cmake --preset "$CMAKE_PRESET" -D CMAKE_CXX_COMPILER="g++-12" - name: "build" run: cmake --build --preset "$CMAKE_PRESET" --preset -- -j3 - name: "install dependencies for running benchmarks"