-
Notifications
You must be signed in to change notification settings - Fork 5
55 lines (44 loc) · 1.26 KB
/
macos.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
name: MacOS
on:
push:
branches:
- development
pull_request:
branches:
- development
env:
CTEST_OUTPUT_ON_FAILURE: 1
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules
LUPNT_DATA_PATH: ${{ github.workspace }}/LuPNT_data
jobs:
build-macos:
runs-on: macos-latest
steps:
- name: install dependencies
run: brew install boost libomp hdf5
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: cache-cpm-modules
with:
path: "**/cpm_modules"
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
- name: cache LuPNT_data
id: cache-lupnt
uses: actions/cache@v4
with:
path: data
key: LuPNT_data-${{ vars.LUPNT_DATA_CACHE_DATE }}
- name: download and unzip LuPNT_data
if: steps.cache-lupnt.outputs.cache-hit != 'true'
run: |
curl -L https://bit.ly/LuPNT_data -o LuPNT_data.zip
unzip LuPNT_data.zip
rm LuPNT_data.zip
- name: configure
run: cmake -Stest -Bbuild -DCMAKE_BUILD_TYPE=Debug
- name: build
run: cmake --build build -j4
- name: test
run: |
cd build
ctest --build-config Debug