From e3212ad9b258e032056f6fba0aace41644cc86b3 Mon Sep 17 00:00:00 2001 From: Xminent Date: Sun, 10 Dec 2023 15:44:09 -0600 Subject: [PATCH] ci: :construction_worker: use installed gcc version; update to g++-12 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc57a74..e629f79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: if: runner.os == 'Linux' run: | sudo apt-get update - sudo apt-get install -y cmake g++-10 libssl-dev ninja-build rpm zlib1g-dev + sudo apt-get install -y cmake g++-12 libssl-dev ninja-build rpm zlib1g-dev - name: Add MSBuild to PATH (Windows) if: runner.os == 'Windows' @@ -63,6 +63,8 @@ jobs: - name: Configure CMake (Linux) if: runner.os == 'Linux' run: cmake -S . -B build -G Ninja + env: + CXX: g++-12 - name: Configure CMake (Windows x64) if: runner.os == 'Windows' && matrix.config.arch == 'x64'