From 9299c72a6567ff8ad7603611ab9c7787e8f3edef Mon Sep 17 00:00:00 2001 From: Florian Albrechtskirchinger Date: Wed, 2 Mar 2022 19:43:17 +0100 Subject: [PATCH] CI: change msvc2019* runners to windows-2019 Github updated their runners. Windows-latest is now based on Windows Server 2022 and comes with different tool versions. MSVC 2019 is now available via the windows-2019 runner. --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 186e5ae183..304770f6df 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -65,7 +65,7 @@ jobs: run: cd build ; ctest -j 10 -C Release --output-on-failure msvc2019: - runs-on: windows-latest + runs-on: windows-2019 strategy: matrix: build_type: [Debug, Release] @@ -85,7 +85,7 @@ jobs: run: cd build ; ctest -j 10 -C ${{ matrix.build_type }} --output-on-failure msvc2019_latest: - runs-on: windows-latest + runs-on: windows-2019 steps: - uses: actions/checkout@v2