-
Notifications
You must be signed in to change notification settings - Fork 6
42 lines (37 loc) · 1.13 KB
/
cmake.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
name: Build
on:
push:
jobs:
build-project:
strategy:
matrix:
config:
- {
os: ubuntu-latest,
cmake_options: "",
dependencies: "sudo apt update -yqq && sudo apt -yqq install libboost-dev"
}
- {
os: macos-latest,
cmake_options: "CMAKE_PREFIX_PATH=/opt/homebrew",
dependencies: "brew install boost eigen && brew link boost eigen"
}
- {
os: windows-latest,
cmake_options: "BOOST_ROOT=c:/local/boost_1_86_0",
dependencies: "choco install eigen -y --no-progress && choco install boost-msvc-14.3 -y --no-progress"
}
runs-on: ${{ matrix.config.os }}
steps:
- name: Checkout Project
uses: actions/checkout@v4
with:
submodules: recursive
- name: Dependencies
run: ${{ matrix.config.dependencies }}
- name: Build Project
uses: threeal/[email protected]
with:
options: |
PUARA_GESTURES_ENABLE_STANDALONE=0
${{ matrix.config.cmake_options }}