Skip to content

Commit bae05ca

Browse files
committed
add github workflow for VS 2022
1 parent 57a52a8 commit bae05ca

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/cpp.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,23 @@ name: C/C++ CI
33
on: [push]
44

55
jobs:
6-
build-windows:
6+
build-windows-22:
7+
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
matrix:
11+
os: [windows-2022]
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: configure
17+
run: ./generate_cache.bat /22
18+
19+
- name: build
20+
run: ./build.bat
21+
22+
build-windows-19:
723

824
runs-on: ${{ matrix.os }}
925
strategy:

0 commit comments

Comments
 (0)