From 4c85489e914f1e46a04707aa68be9b3acf234d50 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Fri, 13 Jun 2025 02:47:06 +0300 Subject: [PATCH] Removed windows-2019 jobs from GitHub Actions. The windows-2019 image is deprecated and is about to be removed. --- .github/workflows/ci.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b20f84c..fe8f7f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -526,14 +526,6 @@ jobs: fail-fast: false matrix: include: - - toolset: msvc-14.0 - cxxstd: "14" - addrmd: 32,64 - os: windows-2019 - - toolset: msvc-14.2 - cxxstd: "14,17,20,latest" - addrmd: 32,64 - os: windows-2019 - toolset: msvc-14.3 cxxstd: "14,17,20,latest" addrmd: 32,64 @@ -543,9 +535,9 @@ jobs: addrmd: 32,64 os: windows-2022 - toolset: gcc - cxxstd: "11,14,17,2a" + cxxstd: "11,14,17,20,23" addrmd: 64 - os: windows-2019 + os: windows-2022 timeout-minutes: 15 runs-on: ${{matrix.os}}