-
Notifications
You must be signed in to change notification settings - Fork 3
38 lines (30 loc) · 1.16 KB
/
run-tests-windows-action.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
name: Run Tests (Windows)
on:
push
jobs:
run_tests:
strategy:
matrix:
os: [windows-2019, windows-2022]
include:
- os: windows-2019
generator: "Visual Studio 16 2019"
- os: windows-2022
generator: "Visual Studio 17 2022"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Project (dry run)
working-directory: ${{github.workspace}}
run: python ${{github.workspace}}\jamba-test-plugin\configure.py -n -G "${{ matrix.generator }}" -- -DJAMBA_DOWNLOAD_VSTSDK=ON -A x64
- name: Configure Project
working-directory: ${{github.workspace}}
run: python ${{github.workspace}}\jamba-test-plugin\configure.py -G "${{ matrix.generator }}" -- -DJAMBA_DOWNLOAD_VSTSDK=ON -A x64
- name: Run test/validate/archive (Release)
working-directory: ${{github.workspace}}/build
run: .\jamba.bat --release -b test validate archive
- name: Run test/validate/archive (Debug)
working-directory: ${{github.workspace}}/build
run: .\jamba.bat -b test validate archive