-
Notifications
You must be signed in to change notification settings - Fork 10
60 lines (49 loc) · 1.24 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
name: Builds
on:
push:
pull_request:
branches:
- main
- 'release/**'
env:
CTEST_OUTPUT_ON_FAILURE: 1
jobs:
build:
strategy:
matrix:
os:
- macos-14
- ubuntu-22.04
- ubuntu-24.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install boost
else
sudo apt-get install libboost-all-dev
fi
- name: Initialize Workspace
run: cd $GITHUB_WORKSPACE
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: |
cmake $GITHUB_WORKSPACE \
-DCOMPILE_WARNING_AS_ERROR=ON \
-DACTSVG_BUILD_TESTING=ON \
-DACTSVG_BUILD_META=ON \
-DACTSVG_BUILD_WEB=ON \
-DACTSVG_BUILD_EXAMPLES=ON
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --config Release
- name: Unit Tests
working-directory: ${{runner.workspace}}/build
shell: bash
run: ctest -C Release