From 6f383c868caab5dfcd77cec50661e5f9f797ba96 Mon Sep 17 00:00:00 2001 From: Ionut Tomos Date: Sat, 16 May 2026 23:12:57 +0300 Subject: [PATCH] Minimize Boost install and update Windows runner to 2025. --- .github/workflows/cmake-gcc-clang.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake-gcc-clang.yml b/.github/workflows/cmake-gcc-clang.yml index 5cc42a9..332961d 100644 --- a/.github/workflows/cmake-gcc-clang.yml +++ b/.github/workflows/cmake-gcc-clang.yml @@ -37,7 +37,6 @@ jobs: matrix: include: # --- Linux x64 --- - # We define 'compiler' as a dictionary (object) here - os: ubuntu-latest build_type: Release compiler: { c: gcc, cpp: g++ } @@ -74,7 +73,7 @@ jobs: if: startsWith(matrix.os, 'ubuntu') run: | sudo apt-get update - sudo apt-get install --yes -qq libboost-all-dev + sudo apt-get install --yes -qq libboost-test-dev - name: Install boost on windows if: startsWith(matrix.os, 'windows') && matrix.compiler.cpp == 'cl' @@ -82,7 +81,7 @@ jobs: id: install-boost-windows with: boost_version: 1.89.0 - platform_version: 2022 + platform_version: 2025 toolset: msvc - name: Configure CMake Ubuntu