From 2e1067333498185c6e452d060c77ccbaea76b6e3 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Fri, 17 May 2024 11:57:42 +0200 Subject: [PATCH] Update Windows CI. (#1000) Since a recent update it seems that Windows 2022 now uses Visual Studio 2022 17.9 and doesn't include toolset v141 anymore. --- .github/workflows/ci.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb9d92ea0..d1495c177 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -346,19 +346,9 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - os: [ "windows-2022"] - vs-toolset: [ "v141", "v143" ] + os: [ "windows-2019", "windows-2022"] cxxstd: ["14", "17", "20"] - include: - - os: "windows-2019" - vs-toolset: "v142" - cxxstd: "14" - - - os: "windows-2019" - vs-toolset: "v142" - cxxstd: "17" - steps: - uses: actions/checkout@v3 with: @@ -373,7 +363,6 @@ jobs: shell: bash -l {0} run: | CMAKE_OPTIONS=( - -T ${{matrix.vs-toolset}} -DCMAKE_CXX_STANDARD=${{matrix.cxxstd}} -DHIGHFIVE_UNIT_TESTS=ON -DHIGHFIVE_TEST_BOOST:BOOL=ON