-
Notifications
You must be signed in to change notification settings - Fork 15
395 lines (335 loc) · 15.9 KB
/
build.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
name: Build
on: [push, pull_request, workflow_dispatch]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build-linux:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Hashing dependency CMake files
id: dep_cmake_hash
run: echo "dep_cmake_hash=${{ hashFiles('./deps/**') }}" >> $GITHUB_OUTPUT
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: |
python -m pip install build
python -m pip install py-build-cmake
cmake -E make_directory ${{github.workspace}}/build
cmake -E make_directory ${{github.workspace}}/build/dist
cmake -E make_directory ${{github.workspace}}/example/build_fp
cmake -E make_directory ${{github.workspace}}/example/build_subd
- uses: actions/cache@v3
name: Getting dependency cache
id: cache
with:
path: ${{github.workspace}}/deps/build-python-module/destdir
key: ${{ runner.os }}-${{ matrix.arch }}-build-deps-${{ steps.dep_cmake_hash.outputs.dep_cmake_hash }}
- name: Build dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
shell: bash
working-directory: ${{github.workspace}}/deps
run: cmake -D_DEPS_PRESET=python-module -P autobuild.cmake
- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{github.workspace}}/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: >
cmake $GITHUB_WORKSPACE
-DCMAKE_BUILD_TYPE=$BUILD_TYPE
-DCMAKE_PREFIX_PATH=${{github.workspace}}/deps/build-python-module/destdir/usr/local
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/dist
-DCATCH_EXTRA_ARGS="--reporter;junit;--out=result-junit-linux.xml"
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build . --config $BUILD_TYPE --target install
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --verbose
- name: Build example (using find_package)
working-directory: ${{github.workspace}}/example/build_fp
shell: bash
run: |
cmake .. -DCMAKE_PREFIX_PATH="${{github.workspace}}/build/dist;${{github.workspace}}/deps/build-python-module/destdir/usr/local"
cmake --build .
- name: Build example (using add_subdirectory)
working-directory: ${{github.workspace}}/example/build_subd
shell: bash
run: |
cmake .. -DBGCODE_AS_SUBPROJECT=ON -DLibBGCode_BUILD_TESTS=OFF -DCMAKE_PREFIX_PATH=${{github.workspace}}/deps/build-python-module/destdir/usr/local
cmake --build .
- name: Build Python wheel
working-directory: ${{github.workspace}}
shell: bash
run: python -m build --wheel
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: ${{github.workspace}}/build/**/result-junit-linux.xml
- uses: actions/upload-artifact@v3 # upload python module
name: Saving Python artifacts
if: success()
with:
name: libbgcode-python-linux
path: ${{github.workspace}}/dist/
build-wasm:
runs-on: ubuntu-latest
container:
image: emscripten/emsdk
env:
LANG: C.utf8
steps:
- uses: actions/checkout@v3
- name: Hashing dependency CMake files
id: dep_cmake_hash
run: echo "dep_cmake_hash=${{ hashFiles('./deps/**') }}" >> $GITHUB_OUTPUT
- name: Create Build Environment
shell: bash
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: |
cmake -E make_directory build
cmake -E make_directory build/dist
cmake -E make_directory example/build_fp
cmake -E make_directory example/build_subd
- uses: actions/cache@v3
name: Getting dependency cache
id: cache
with:
path: deps/build-wasm/destdir
key: ${{ runner.os }}-${{ matrix.arch }}-emscripten-build-deps-${{ steps.dep_cmake_hash.outputs.dep_cmake_hash }}
- name: Build dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
shell: bash
working-directory: ${{github.workspace}}/deps
run: |
emcmake cmake --preset wasm
cmake --build --preset wasm
- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{github.workspace}}/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: emcmake cmake .. -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_FIND_ROOT_PATH=$(pwd)/../deps/build-wasm/destdir/usr/local -DCMAKE_INSTALL_PREFIX=$(pwd)/../build/dist -DCATCH_EXTRA_ARGS="--reporter;junit;--out=result-junit-wasm.xml"
- name: Build
shell: bash
working-directory: ${{github.workspace}}/build
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --target install
- name: Test
shell: bash
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --verbose
- name: Build example (using find_package)
shell: bash
working-directory: ${{github.workspace}}/example/build_fp
run: |
emcmake cmake .. -DCMAKE_FIND_ROOT_PATH="$(pwd)/../../build/dist;$(pwd)/../../deps/build-wasm/destdir/usr/local"
cmake --build .
- name: Build example (using add_subdirectory)
shell: bash
working-directory: ${{github.workspace}}/example/build_subd
run: |
emcmake cmake .. -DBGCODE_AS_SUBPROJECT=ON -DLibBGCode_BUILD_TESTS=OFF -DCMAKE_FIND_ROOT_PATH=$(pwd)/../../deps/build-wasm/destdir/usr/local
cmake --build .
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: ${{github.workspace}}/build/**/result-junit-wasm.xml
- uses: actions/upload-artifact@v3 # upload wasm module
name: Saving WebAssembly artifacts
if: success()
with:
name: libbgcode-wasm
path: ${{github.workspace}}/build/dist/lib/wasm/
build-msvc:
runs-on: windows-2019
strategy:
matrix:
arch: [x64]
steps:
- uses: actions/checkout@v3
name: Checking out
- uses: ilammy/msvc-dev-cmd@v1
name: Configuring build environment
with:
arch: ${{ matrix.arch }}
- name: Hashing dependency CMake files
id: dep_cmake_hash
run: echo "dep_cmake_hash=${{ hashFiles('./deps/**') }}" | Out-File -FilePath $Env:GITHUB_OUTPUT -Encoding utf8 -Append
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: |
python -m pip install build
cmake -E make_directory ${{github.workspace}}\build
cmake -E make_directory ${{github.workspace}}\build\dist
cmake -E make_directory ${{github.workspace}}\example\build_fp
cmake -E make_directory ${{github.workspace}}\example\build_subd
- uses: actions/cache@v3
name: Getting dependency cache
id: cache
with:
path: ${{github.workspace}}\deps\build-python-module\destdir
key: ${{ runner.os }}-${{ matrix.arch }}-build-deps-${{ steps.dep_cmake_hash.outputs.dep_cmake_hash }}
- name: Build dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
working-directory: ${{github.workspace}}\deps
run: |
cmake --preset python-module -DCMAKE_BUILD_TYPE=Release
cmake --build --preset python-module
cmake --preset python-module -DCMAKE_BUILD_TYPE=Debug
cmake --build --preset python-module
- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
working-directory: ${{github.workspace}}\build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: >
cmake .. -DCMAKE_PREFIX_PATH=${{github.workspace}}\deps\build-python-module\destdir\usr\local
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}\build\dist
-DCATCH_EXTRA_ARGS="--reporter;junit;--out=result-junit-msvc.xml"
- name: Build
working-directory: ${{github.workspace}}\build
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $Env:BUILD_TYPE --target install
- name: Test
working-directory: ${{github.workspace}}\build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --verbose -C Release
- name: Build example (using find_package)
working-directory: ${{github.workspace}}\example\build_fp
run: |
cmake .. -DCMAKE_PREFIX_PATH="${{github.workspace}}\build\dist;${{github.workspace}}\deps\build-python-module\destdir\usr\local"
cmake --build . --config Release
- name: Build example (using add_subdirectory)
working-directory: ${{github.workspace}}\example\build_subd
run: |
cmake .. -DBGCODE_AS_SUBPROJECT=ON -DLibBGCode_BUILD_TESTS=OFF -DCMAKE_PREFIX_PATH=${{github.workspace}}\deps\build-python-module\destdir\usr\local
cmake --build . --config Release
- name: Build Python wheel
working-directory: ${{github.workspace}}
run: python -m build --wheel
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results-msvc
path: ${{github.workspace}}\build\**\result-junit-msvc.xml
- uses: actions/upload-artifact@v3 # upload python module
name: Saving Python artifacts
if: success()
with:
name: libbgcode-python-msvc
path: ${{github.workspace}}\dist\
build-mac:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
# - uses: actions/setup-python@v4
# with:
# python-version: '3.10'
- name: Hashing dependency CMake files
id: dep_cmake_hash
run: echo "dep_cmake_hash=${{ hashFiles('./deps/**') }}" >> $GITHUB_OUTPUT
- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: |
python3 -m pip install build
cmake -E make_directory ${{github.workspace}}/build
cmake -E make_directory ${{github.workspace}}/build/dist
cmake -E make_directory ${{github.workspace}}/example/build_fp
cmake -E make_directory ${{github.workspace}}/example/build_subd
- uses: actions/cache@v3
name: Getting dependency cache
id: cache
with:
path: ${{github.workspace}}/deps/build-python-module/destdir
key: ${{ runner.os }}-${{ matrix.arch }}-build-deps-${{ steps.dep_cmake_hash.outputs.dep_cmake_hash }}
- name: Build dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
shell: bash
working-directory: ${{github.workspace}}/deps/
run: |
cmake --preset python-module -DCMAKE_OSX_DEPLOYMENT_TARGET=10.12
cmake --build --preset python-module
- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{github.workspace}}/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: >
cmake $GITHUB_WORKSPACE
-DCMAKE_BUILD_TYPE=$BUILD_TYPE
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.12
-DCMAKE_PREFIX_PATH=${{github.workspace}}/deps/build-python-module/destdir/usr/local
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/dist
-DCATCH_EXTRA_ARGS="--reporter;junit;--out=result-junit-mac.xml"
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build . --target install
- name: Test
working-directory: ${{github.workspace}}/build
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest --verbose
- name: Build Python wheel
working-directory: ${{github.workspace}}
shell: bash
run: python3 -m build --wheel
- name: Build example (using find_package)
working-directory: ${{github.workspace}}/example/build_fp
shell: bash
run: |
cmake .. -DCMAKE_OSX_DEPLOYMENT_TARGET=10.12 -DCMAKE_PREFIX_PATH="${{github.workspace}}/build/dist;${{github.workspace}}/deps/build-python-module/destdir/usr/local"
cmake --build .
- name: Build example (using add_subdirectory)
working-directory: ${{github.workspace}}/example/build_subd
shell: bash
run: |
cmake .. -DCMAKE_OSX_DEPLOYMENT_TARGET=10.12 -DBGCODE_AS_SUBPROJECT=ON -DLibBGCode_BUILD_TESTS=OFF -DCMAKE_PREFIX_PATH=${{github.workspace}}/deps/build-python-module/destdir/usr/local
cmake --build .
- uses: actions/upload-artifact@v3 # upload test results
if: success() || failure() # run this step even if previous step failed
with:
name: test-results
path: ${{github.workspace}}/build/**/result-junit-mac.xml
- uses: actions/upload-artifact@v3 # upload python module
name: Saving Python artifacts
if: success()
with:
name: libbgcode-python-mac
path: ${{github.workspace}}/dist/