-
Notifications
You must be signed in to change notification settings - Fork 1
115 lines (106 loc) · 2.81 KB
/
boosttest.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Boost.Test
on:
push:
jobs:
build:
runs-on: ubuntu-latest
container: maswag/monaa-test-env
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: default build
run: |
mkdir -p build
cd build && cmake .. && make
gcc_unit_test:
runs-on: ubuntu-latest
container: maswag/monaa-test-env
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: set gcc env
run: |
export CC=/usr/bin/gcc
export CXX=/usr/bin/g++
- name: build and test
run: |
mkdir -p gcc_build
cd gcc_build && cmake .. && make unit_test && make test
clang_unit_test:
runs-on: ubuntu-latest
container: maswag/monaa-test-env
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: set clang env
run: |
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
- name: build and test
run: |
mkdir -p clang_build
cd clang_build && cmake .. && make unit_test && make test
ubuntu_focal:
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: Install required packages
run: sudo apt-get update && sudo apt-get install cmake libeigen3-dev libboost-all-dev -y
- name: build and test
run: |
mkdir -p build
cd build && cmake .. && make unit_test && make test
ubuntu_jammy:
runs-on: ubuntu-22.04
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: Install required packages
run: sudo apt-get update && sudo apt-get install build-essential cmake libeigen3-dev libboost-all-dev -y
- name: build and test
run: |
mkdir -p build
cd build && cmake .. && make unit_test && make test
macOS_BigSur:
runs-on: macos-11
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: Install required packages
run: brew install eigen boost
- name: build and test
run: |
mkdir -p build
cd build && cmake .. && make unit_test && ./unit_test
macOS_Monterey:
runs-on: macos-12
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: Install required packages
run: brew install eigen boost
- name: build and test
run: |
mkdir -p build
cd build && cmake .. && make unit_test && ./unit_test
arch_linux:
runs-on: ubuntu-latest
container: archlinux:base-devel
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v3
- name: Install required packages
run: pacman -Syu cmake eigen boost tbb doxygen --noconfirm
- name: build and test
run: |
mkdir -p build
cd build && cmake .. && make unit_test && ./unit_test