-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (46 loc) · 1.29 KB
/
integration.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
name: IntegrationTests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
configure_and_build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.26.1'
- name: Configure
working-directory: ${{github.workspace}}/integration_test
run: |
mkdir _build
cd _build
cmake ..
shell: cmd
- name: Build
working-directory: ${{github.workspace}}/integration_test/_build
run: |
cmake --build . --config Debug
shell: cmd
just_configure:
runs-on: windows-2022
strategy:
matrix:
folder: [ fetch_test, root_dir_test ]
steps:
- uses: actions/checkout@v4
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.26.1'
- name: Configure
working-directory: ${{github.workspace}}/${{matrix.folder}}
run: |
mkdir _build
cd _build
cmake ..
shell: cmd