We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dfd109 commit 3c052b1Copy full SHA for 3c052b1
1 file changed
.github/workflows/windows.yml
@@ -12,7 +12,7 @@ env:
12
13
jobs:
14
build_with_cmake:
15
- runs-on: windows-2019
+ runs-on: windows-latest
16
17
strategy:
18
matrix:
@@ -27,7 +27,7 @@ jobs:
27
- uses: actions/checkout@v2
28
29
- name: Generate Project
30
- run: cmake -B Build/${{ matrix.mode }} -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DRFK_DEV=1 -G "Visual Studio 16 2019" -A x64
+ run: cmake -B Build/${{ matrix.mode }} -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DRFK_DEV=1 -G "Visual Studio 17 2022" -A x64
31
32
- name: Build async_simple
33
run: cmake --build Build/${{ matrix.mode }} --config ${{ matrix.mode }} --verbose
@@ -39,7 +39,7 @@ jobs:
39
run: ctest -C ${{ matrix.mode }} --output-on-failure
40
41
build_with_bazel:
42
43
44
steps:
45
0 commit comments