-
Notifications
You must be signed in to change notification settings - Fork 13
55 lines (48 loc) · 1.18 KB
/
macOS_build.yml
File metadata and controls
55 lines (48 loc) · 1.18 KB
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
---
# Configuration script for github continuous integration service
name: macOS build
on:
push:
branches: [master]
paths-ignore:
- "*.md"
- "*.cff"
- "env/csv/*.csv"
- "env/maze/*.txt"
- "cfg/*.json"
- "python/*.py"
- "python/notebooks/*.ipynb"
pull_request:
branches: [master]
paths-ignore:
- "*.md"
- "*.cff"
- "env/csv/*.csv"
- "env/maze/*.txt"
- "cfg/*.json"
- "python/*.py"
- "python/notebooks/*.ipynb"
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
with:
submodules: true
- name: Install Dependencies
run: |
brew install libomp
OPENMP_PREFIX=$(brew --prefix)/opt/libomp
echo "OpenMP_ROOT=$OPENMP_PREFIX" >> $GITHUB_ENV
echo "LDFLAGS=$LDFLAGS -L$OPENMP_PREFIX/lib" >> $GITHUB_ENV
- name: Configure
working-directory: build
run: cmake ..
-DCMAKE_BUILD_TYPE=Release
-DXCSF_PYLIB=ON
-DENABLE_TESTS=ON
-DPYTEST=ON
- name: Build
working-directory: build
run: cmake --build . --config Release -j2
...