-
Notifications
You must be signed in to change notification settings - Fork 13
179 lines (144 loc) · 3.71 KB
/
build_and_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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: Build & Tests
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
jobs:
build:
name: Build
runs-on: ubuntu-22.04
env:
CC: gcc-11
CXX: g++-11
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: mkdir
run: mkdir build
- name: cmake configure
run: cmake -Bbuild -H.
- name: cmake build
run: cmake --build build/ --target all
- name: Upload Build Artifact
uses: actions/[email protected]
with:
name: build-artifact
retention-days: 3
path: |
build/lsqecc_slicer
build/lsqecc_tests
unit-test:
name: Run unit tests
runs-on: ubuntu-22.04
needs: [build]
steps:
- name: Download Build Artifact
uses: actions/[email protected]
with:
name: build-artifact
path: build
- name: Mark the tests as executable
run: chmod +x build/lsqecc_tests
- name: Unit tests
run: build/lsqecc_tests --gtest_filter=*
regression-test:
name: Run regression tests
runs-on: ubuntu-22.04
needs: [build]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Download Build Artifact
uses: actions/[email protected]
with:
name: build-artifact
path: build
- name: Mark the slicer as executable
run: chmod +x build/lsqecc_slicer
- name: Regression tests
shell: bash
run: |
cd regression_tests
./suite.py
npm-build:
name: Create emscripten build
runs-on: ubuntu-22.04
env:
EM_VERSION: 3.1.24
EM_CACHE_FOLDER: 'emsdk-cache'
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup system libraries cache
uses: actions/cache@v3
with:
path: ${{env.EM_CACHE_FOLDER}}
key: ${{env.EM_VERSION}}-${{ runner.os }}
- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v12
with:
version: ${{env.EM_VERSION}}
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
- name: Create emscripten build
run: |
mkdir build
emcmake cmake -Bbuild -H. -DCMAKE_BUILD_TYPE=Debug
make -Cbuild
- name: Build output
run: |
cd build
ls
- name: Copy LICENSE
run: |
cp LICENSE npm/
- name: Upload Build Artifact
uses: actions/[email protected]
with:
name: npm-build-artifact
retention-days: 3
path: |
npm/
npm-lint:
name: NPM package lint
runs-on: ubuntu-22.04
needs: [npm-build]
steps:
- name: Setup Node JS
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Download Build Artifact
uses: actions/[email protected]
with:
name: npm-build-artifact
- name: Install dependencies
run: npm ci
- name: Prettier
run: npm run lint
- name: tsc
run: npm run build
npm-test:
name: NPM package test
runs-on: ubuntu-22.04
needs: [npm-build]
steps:
- name: Setup Node JS
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Download Build Artifact
uses: actions/[email protected]
with:
name: npm-build-artifact
- name: Install dependencies
run: npm ci
- name: Run test suite
run: npm run test