-
Notifications
You must be signed in to change notification settings - Fork 78
32 lines (28 loc) · 982 Bytes
/
test-mac.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
name: Mac unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
mac-tests:
runs-on: macos-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name : installPackages
run : brew install eigen boost boost-python3 libomp gflags
- name : install python packages
run: pip3 install numpy setuptools --break-system-packages
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v1
id: cpu-cores
- name: cmake
run: mkdir build && cd build && cmake .. -DLIBCMAES_BUILD_PYTHON=On -DLIBCMAES_BUILD_TESTS=On -DLIBCMAES_USE_OPENMP=On
- name: compile
run: cd build && cmake --build . -j${{ steps.cpu-cores.outputs.count }}
- name: Run ctest
run: cd build && ctest -j${{ steps.cpu-cores.outputs.count }} --output-on-failure