-
-
Notifications
You must be signed in to change notification settings - Fork 45
60 lines (50 loc) · 1.09 KB
/
test.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: test
on:
push:
branches: [ master ]
tags:
- v*.*.*
- test*
paths:
- '!README.md'
- '!CONTRIBUTING.md'
- '!docs/**'
- 'src/**'
- 'tests/**'
- '.github/**'
- 'tools/**'
pull_request:
branches: [ master ]
paths:
- '!README.md'
- '!CONTRIBUTING.md'
- '!docs/**'
- 'src/**'
- '.github/**'
- 'tests/**'
- 'tools/**'
env:
BUILD_TYPE: Debug
jobs:
test-on-Windows:
runs-on: windows-2019
defaults:
run:
shell: powershell
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
- name: Configure CMake
working-directory: ${{github.workspace}}/tests
run: |
cmake -B build_msvc unit
- name: Build
working-directory: ${{github.workspace}}/tests
run: |
cmake --build build_msvc --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/tests
run: |
ctest -C ${{env.BUILD_TYPE}} --test-dir build_msvc --output-on-failure