-
Notifications
You must be signed in to change notification settings - Fork 48
55 lines (43 loc) · 1.59 KB
/
windows-2019.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
name: Windows 2019
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master, devel ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Install Qt
uses: jurplel/install-qt-action@v3
- name: Download cisstNetlib
run: |
cmake -E make_directory ${{github.workspace}}/cisstNetlib-build
git clone https://github.com/jhu-cisst/cisstNetlib ${{github.workspace}}/cisstNetlib-source
- name: Build cisstNetlib
working-directory: ${{github.workspace}}/cisstNetlib-build
run: |
cmake ${{github.workspace}}/cisstNetlib-source
cmake --build . --config Release
cmake --build . --target install
- name: Create Build Environment
run: cmake -E make_directory ${{github.workspace}}/build
- name: Configure CMake
working-directory: ${{github.workspace}}/build
run: cmake ${{github.workspace}} -DCMAKE_BUILD_TYPE=Release -C ${{github.workspace}}/.github/workflows/cmake-windows-cache.cmake
- name: Build
working-directory: ${{github.workspace}}/build
run: |
./cisstvars.bat Release
cmake --build . --config Release
# - name: Test
# working-directory: ${{github.workspace}}/build
# run: |
# dir
# ./bin/cisstCommonTests -r
# ./bin/cisstVectorTests -r
# ./bin/cisstNumericalTests -r
# ./bin/cisstOSAbstractionTests -r
# ./bin/cisstParameterTypesTests -r