-
Notifications
You must be signed in to change notification settings - Fork 24
42 lines (42 loc) · 933 Bytes
/
msvc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: MSVC
on:
push:
branches: [ master ]
paths-ignore:
- 'Test/**'
- '**/*.md'
- '**/*.txt'
- '**/*.sys'
- '**/*.dll'
- '**/*.exe'
pull_request:
branches: [ master ]
env:
SOLUTION_FILE_PATH: .
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup VS Build Engine
uses: microsoft/[email protected]
- name: Setup VS Developer Command Prompt
uses: TheMrMilchmann/[email protected]
with:
arch: x64
toolset: 14.2
- name: Verify VS Build Environment
shell: cmd
run: |
ECHO.
msbuild -version
ECHO.
where cl.exe
IF ERRORLEVEL 1 exit ERRORLEVEL
- name: Perform Building
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
run: |
CD tools
SET VU_CI_BUILD=1
VS2019.Build.Static.Library.CMD