Skip to content

Commit c68cd29

Browse files
committed
Run installation tests on GitHub Actions.
1 parent 3ee72c3 commit c68cd29

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/main.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
defaults:
6+
run:
7+
shell: cmd
8+
9+
jobs:
10+
vs2019:
11+
name: Visual Studio 2019
12+
runs-on: windows-2019
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
- name: install llvm utils
17+
run: |
18+
CALL "VS2017\install.bat" 1
19+
20+
vs2017:
21+
name: Visual Studio 2017
22+
runs-on: windows-2016
23+
steps:
24+
- uses: actions/checkout@v2
25+
26+
- name: install llvm utils
27+
run: |
28+
CALL "VS2017\install.bat" 1

0 commit comments

Comments
 (0)