-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (35 loc) · 1.26 KB
/
CI.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
43
name: Build
on: [push]
jobs:
build_and_run_tests:
name: Build and run tests
runs-on: windows-2022
steps:
- name: Sync
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Build Debug configuration
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
run: .\HelperScripts\Internal\BuildSolution.bat Debug
- name: Run tests on Debug configuration
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
run: .\HelperScripts\Internal\RunTests.bat Debug
- name: Build Development configuration
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
run: .\HelperScripts\Internal\BuildSolution.bat Development
- name: Run tests on Development configuration
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
run: .\HelperScripts\Internal\RunTests.bat Development
- name: Build Release configuration
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
run: .\HelperScripts\Internal\BuildSolution.bat Release
- name: Run tests on Release configuration
working-directory: ${{env.GITHUB_WORKSPACE}}
shell: cmd
run: .\HelperScripts\Internal\RunTests.bat Release