-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (39 loc) · 1 KB
/
test.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
name: Run unit tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
checkout-and-ctest-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- run: brew install llvm libomp
- run: |
export CC=/usr/local/opt/llvm/bin/clang
export CXX=/usr/local/opt/llvm/bin/clang++
cmake .
- run: cmake --build .
- run: ctest
checkout-and-ctest-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- run: sudo apt install libtbb2-dev
- run: cmake -DTBB_DIR=/usr/lib/x86_64-linux-gnu/cmake/TBB .
- run: cmake --build .
- run: ctest
checkout-and-ctest-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- run: cmake .
- run: cmake --build . --config Release
- run: ctest -C Release