-
Notifications
You must be signed in to change notification settings - Fork 18
226 lines (223 loc) · 7.09 KB
/
main.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
name: CI
env:
BUILD_TYPE: Debug Release
on: [push, pull_request, workflow_dispatch]
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [g++-10, g++-11, clang++-11, clang++-12]
standard: [17, 20]
config: [Debug, Release]
steps:
- uses: actions/checkout@v3
- name: Install g++-11
if: ${{ matrix.compiler == 'g++-11' }}
run: |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install g++-11
- name: Install clang-11
if: ${{ matrix.compiler == 'clang++-11' }}
run: |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install clang-11
- name: Install Boost
if: ${{ matrix.standard == 17 }}
run: |
sudo apt update
sudo apt install libboost-all-dev
- name: Configure
run: |
echo "#define YOMM2_BENCHMARK_HIERARCHIES 10" > tests/benchmarks_parameters.hpp
mkdir cmake.bld
cd cmake.bld
cmake .. -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DYOMM2_ENABLE_TESTS=1 -DYOMM2_ENABLE_BENCHMARKS=1
- name: Build
run: VERBOSE=1 cmake --build cmake.bld
- name: Unit Tests
run: |
cd cmake.bld
ctest --rerun-failed --output-on-failure .
- name: Examples
run: |
pwd
cd cmake.bld/examples
find . -type f -executable -exec {} \;
- name: Benchmarks
if: ${{ matrix.config == 'Release' }}
run: |
cd cmake.bld/tests
../../dev/run-benchmarks-here
ubuntu-mix-debug-release:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [g++-10, clang++-12]
standard: [17]
config: [ReleaseDebug, DebugRelease]
steps:
- uses: actions/checkout@v3
- name: Install Boost
run: |
sudo apt update
sudo apt install libboost-all-dev
- name: Configure
run: |
echo "#define YOMM2_BENCHMARK_HIERARCHIES 10" > tests/benchmarks_parameters.hpp
mkdir cmake.bld
cd cmake.bld
cmake .. -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DYOMM2_ENABLE_TESTS=1 -DYOMM2_ENABLE_BENCHMARKS=1
- name: Build
run: VERBOSE=1 cmake --build cmake.bld
- name: Unit Tests
run: |
cd cmake.bld
ctest --rerun-failed --output-on-failure .
- name: Examples
run: |
cd cmake.bld/examples
find . -type f -executable -exec {} \;
ubuntu-shared:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [g++-10, g++-11, clang++-11, clang++-12]
standard: [17]
steps:
- uses: actions/checkout@v3
- name: Install g++-11
if: ${{ matrix.compiler == 'g++-11' }}
run: |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install g++-11
- name: Install clang-11
if: ${{ matrix.compiler == 'clang++-11' }}
run: |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt install clang-11
- name: Install Boost
run: |
sudo apt update
sudo apt install libboost-all-dev
- name: Configure
run: |
mkdir cmake.bld
cd cmake.bld
cmake .. -DYOMM2_SHARED=1 -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DYOMM2_ENABLE_TESTS=1
- name: Build
run: VERBOSE=1 cmake --build cmake.bld
- name: Unit Tests
run: |
cd cmake.bld
ctest --rerun-failed --output-on-failure .
- name: Examples
run: |
pwd
cd cmake.bld/examples
find . -type f -executable -exec {} \;
windows:
runs-on: windows-latest
strategy:
matrix:
config: [Debug, Release, ReleaseDebug, DebugRelease]
steps:
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1.4.1
- name: Configure
run: |
echo "#define YOMM2_BENCHMARK_HIERARCHIES 10" > tests/benchmarks_parameters.hpp
mkdir cmake.bld
cd cmake.bld
cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DYOMM2_ENABLE_TESTS=1
- name: Build
run: |
cd cmake.bld
nmake
- name: Unit Tests
run: |
cd cmake.bld
$env:YOMM2_TRACE = 1
ctest --rerun-failed --output-on-failure .
$global:LASTEXITCODE = 0
# - name: Examples
# run: |
# cd cmake.bld/examples
# find . -type f -executable -exec {} \;
# - name: Benchmarks
# if: ${{ matrix.config == 'Release' }}
# run: |
# cd cmake.bld/tests
# benchmarks
windows-shared:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: ilammy/msvc-dev-cmd@v1.4.1
- name: Configure
run: |
mkdir cmake.bld
cd cmake.bld
cmake .. -G "NMake Makefiles" -DYOMM2_SHARED=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=17 -DYOMM2_ENABLE_TESTS=1
- name: Build
run: |
cd cmake.bld
nmake
- name: Unit Tests
run: |
cd cmake.bld
$env:YOMM2_TRACE = 1
ctest --rerun-failed --output-on-failure .
$global:LASTEXITCODE = 0
# - name: Examples
# run: |
# cd cmake.bld/examples
# find . -type f -executable -exec {} \;
# - name: Benchmarks
# if: ${{ matrix.config == 'Release' }}
# run: |
# cd cmake.bld/tests
# benchmarks
mac:
runs-on: macOS-latest
strategy:
matrix:
# config: [Debug, Release, ReleaseDebug, DebugRelease]
config: [Debug, Release]
steps:
- uses: actions/checkout@v3
- name: Configure
run: |
echo "#define YOMM2_BENCHMARK_HIERARCHIES 10" > tests/benchmarks_parameters.hpp
mkdir cmake.bld
cd cmake.bld
cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.config }} -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DYOMM2_ENABLE_TESTS=1 -DYOMM2_ENABLE_BENCHMARKS=1
- name: Build
run: |
cd cmake.bld
ld --help
export VERBOSE=1
make
- name: Unit Tests
run: |
cd cmake.bld
ctest --rerun-failed --output-on-failure .
- name: Examples
run: |
cd cmake.bld/examples
find . -type f -perm +0111 -exec {} \;
# ./accept_no_visitors
# ./adventure
# ./asteroids
# ./matrix
# ./next
# ./synopsis
- name: Benchmarks
if: ${{ matrix.config == 'Release' }}
run: |
cd cmake.bld/tests
../../dev/run-benchmarks-here