Skip to content

Commit 3864871

Browse files
committed
GitHub Actions: Add workflow on Windows (MSVC compiler)
1 parent 6750902 commit 3864871

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/cmake-msvc.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: "CI: cmake: msvc 2019"
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: windows-2019
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: warrenbuckley/Setup-MSBuild@v1
13+
- name: Build
14+
run: |
15+
cmake .
16+
msbuild ALL_BUILD.vcxproj
17+
- name: Test
18+
run: msbuild RUN_TESTS.vcxproj

0 commit comments

Comments
 (0)