-
Notifications
You must be signed in to change notification settings - Fork 1
119 lines (94 loc) · 2.64 KB
/
ci-workflow.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: CI
on: [push]
jobs:
linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: toucan
submodules: recursive
- name: Setup
run: |
echo "$PWD/install-Debug/bin" >> $GITHUB_PATH
echo "LD_LIBRARY_PATH=$PWD/install-Debug/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
sudo apt-get update
sudo apt-get install xorg-dev libglu1-mesa-dev mesa-common-dev mesa-utils xvfb
- name: Build
run: |
bash toucan/SuperBuild.sh Debug
- name: Install
run: |
cmake --build build-Debug --target install
- name: Tests
run: |
build-Debug/tests/toucan-test toucan/data
macos-12-build:
runs-on: macos-12
steps:
- uses: actions/checkout@v4
with:
path: toucan
submodules: recursive
# \bug DYLD_LIBRARY_PATH is not being set here?
- name: Setup
run: |
echo "$PWD/install-Debug/bin" >> $GITHUB_PATH
echo "DYLD_LIBRARY_PATH=$PWD/install-Debug/lib:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Build
run: |
bash toucan/SuperBuild.sh Debug
- name: Install
run: |
cmake --build build-Debug --target install
- name: Tests
run: |
build-Debug/tests/toucan-test toucan/data
macos-14-build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
with:
path: toucan
submodules: recursive
# \bug DYLD_LIBRARY_PATH is not being set here?
- name: Setup
run: |
echo "$PWD/install-Debug/bin" >> $GITHUB_PATH
echo "DYLD_LIBRARY_PATH=$PWD/install-Debug/lib:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Build
run: |
bash toucan/SuperBuild.sh Debug
- name: Install
run: |
cmake --build build-Debug --target install
- name: Tests
run: |
build-Debug/tests/toucan-test toucan/data
windows-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
path: toucan
submodules: recursive
- uses: ilammy/setup-nasm@v1
# \bug Any spaces before the ">>" will be considered part of the path.
- name: Setup
shell: cmd
run: |
echo %CD%\install-Debug\bin>> %GITHUB_PATH%
echo %CD%\install-Debug\lib>> %GITHUB_PATH%
echo CTEST_OUTPUT_ON_FAILURE=1 >> %GITHUB_ENV%
- name: Build
shell: cmd
run: |
toucan\SuperBuild.bat Debug
- name: Install
shell: cmd
run: |
cmake --build build-Debug --target INSTALL
- name: Tests
shell: cmd
run: |
build-Debug\tests\Debug\toucan-test.exe toucan\data