-
Notifications
You must be signed in to change notification settings - Fork 10
42 lines (32 loc) · 938 Bytes
/
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
name: Builds
on:
push:
pull_request:
branches:
- main
- 'release/**'
env:
CTEST_OUTPUT_ON_FAILURE: 1
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: sudo apt-get install libboost-all-dev
- 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 -DACTSVG_USE_SYSTEM_BOOST=Off -DACTSVG_BUILD_TESTING=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