Skip to content

Commit 3285629

Browse files
committed
Bump CI VS to 2022 as that's the new minimum that CI supports.
1 parent 659f470 commit 3285629

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ jobs:
6666
name: Mac OS test results
6767
path: prebuilt/merged_junit_results.xml
6868

69-
WinVS2019:
70-
name: Windows VS2019
71-
runs-on: windows-2019
69+
WinVS2022:
70+
name: Windows VS2022
71+
runs-on: windows-2022
7272
env:
73-
NAME: WinVS2019
73+
NAME: WinVS2022
7474

7575
steps:
7676
- uses: actions/checkout@v4
@@ -82,19 +82,19 @@ jobs:
8282
# - name: Upload Prebuilt Binaries
8383
# uses: actions/upload-artifact@v4
8484
# with:
85-
# name: Windows VS2019 prebuilt binaries
85+
# name: Windows VS2022 prebuilt binaries
8686
# path: quickcpplib-v0.1-binaries-win64.zip
8787

8888
- name: Upload Test Results
8989
if: always()
9090
uses: actions/upload-artifact@v4
9191
with:
92-
name: Windows VS2019 test results
92+
name: Windows VS2022 test results
9393
path: prebuilt/merged_junit_results.xml
9494

9595
publish-test-results:
9696
name: "Publish Documentation and Unit Tests Results"
97-
needs: [Linux, MacOS, WinVS2019]
97+
needs: [Linux, MacOS, WinVS2022]
9898
runs-on: ubuntu-latest
9999
# the build-and-test job might be skipped, we don't need to run this job then
100100
if: success() || failure()

cmakelib/QuickCppLibUtils.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ macro(CONFIGURE_CTEST_SCRIPT_FOR_CDASH projectname bindir)
441441
if(WIN32)
442442
if(NOT DEFINED CTEST_CMAKE_GENERATOR)
443443
# TODO Figure out how to use winclang via adding in -T v140_clang_c2
444-
set(CTEST_CMAKE_GENERATOR "Visual Studio 16 2019")
444+
set(CTEST_CMAKE_GENERATOR "Visual Studio 17 2022")
445445
set(CTEST_CMAKE_GENERATOR_PLATFORM "x64")
446446
endif()
447447
set(CTEST_CMAKE_CI_BIN_DIR "${bindir}/bin/${CTEST_CONFIGURATION_TYPE}")

include/quickcpplib/revision.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// Note the second line of this file must ALWAYS be the git SHA, third line ALWAYS the git SHA update time
2-
#define QUICKCPPLIB_PREVIOUS_COMMIT_REF f76b563be131145fd83a6dd5b9741c23dc4d794c
3-
#define QUICKCPPLIB_PREVIOUS_COMMIT_DATE "2025-05-20 18:36:46 +00:00"
4-
#define QUICKCPPLIB_PREVIOUS_COMMIT_UNIQUE f76b563b
2+
#define QUICKCPPLIB_PREVIOUS_COMMIT_REF 659f470cec041df6c7d74c5786d9c518dc42263e
3+
#define QUICKCPPLIB_PREVIOUS_COMMIT_DATE "2025-07-09 14:47:44 +00:00"
4+
#define QUICKCPPLIB_PREVIOUS_COMMIT_UNIQUE 659f470c

0 commit comments

Comments
 (0)