-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
465 lines (437 loc) · 11.4 KB
/
.gitlab-ci.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
# File: .gitlab-ci.yml
# License: Part of the PIRA proect. Licensed under BSD 3 clause license. See LICENSE.txt file at https://github.com/tudasc/pira
# Description: File to configure our Gitlab CI
# The order of unit-test, dependence-build-test, and deps-unit-test is to not do time-heavy dependency building
# should the PIRA unit tests fail anyway
stages:
- download-test
- unit-test
- dependence-build-test
- full-dependence-test
- deps-unit-test
- prepare-integration-test
- integration-test
# Setting up the environment on the Lichtenberg system
.lb-setup: &lb-setup
- export LMOD_IGNORE_CACHE=1
- module load gcc/10.2
- module load git python/3 cmake llvm/10 openmpi
- module load libcube/4.5
- module load extrap/3.0
.lb-tear-down: &lb-tear-down
- rm -rf $(dirname $(echo $SSH_AUTH_SOCK))
# Only test that the submodules configured in here are accessible, so we do not block the Pipeline unneccessary long
# GIT_STRATEGY: clone is used to always start with a clean checkout of the repository.
# GIT_SUBMODULE_STRATEGY: none (default), i.e., git submodules need to be handled manually
download:
resource_group: disable-concurrency
stage: download-test
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: clone
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- *lb-tear-down
# Runs the unit tests
# Also uses the GIT_STRATEGY fetch.
# XXX should this be split into multiple, i.e., 1 job per unit test suite?
pira:
resource_group: disable-concurrency
stage: unit-test
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: fetch
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
coverage: /^TOTAL.+?(\d+\%)$/
script:
- export PATH=`pwd`/extern/install/scorep/bin:`pwd`/extern/install/extrap/bin:$PATH
- ./run_tests.sh
- *lb-tear-down
artifacts:
when: always
reports:
junit:
- test/unit/report-*.xml
# Run linting as part of unit-tests (early)
python-lint:
resource_group: disable-concurrency
stage: unit-test
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: fetch
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- ./run-python-lint.sh
- *lb-tear-down
# Run linting as part of unit-tests (early)
shell-lint:
resource_group: disable-concurrency
stage: unit-test
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: fetch
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- module load shellcheck
- ./run-shell-lint.sh
- *lb-tear-down
build-reduced-deps:
resource_group: disable-concurrency
stage: dependence-build-test
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: fetch
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- cd resources
- ./remove_builds.sh
- echo $CUBELIB_ROOT
- echo $EXTRAP_ROOT
- ./build_submodules.sh -p $(cat /proc/cpuinfo | grep processor | wc -l) -e $EXTRAP_ROOT -c $LIBCUBE_ROOT
- *lb-tear-down
# Runs the llvm-instrumentation unit tests
llvm-instrumentation:
resource_group: disable-concurrency
stage: deps-unit-test
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- cd extern/src/llvm-instrumentation/test
- lit -v .
- *lb-tear-down
# Runs the larger integration tests
# XXX we might be able to re-use the still-available software builds from the build-dependencies stage?
# This would *significantly* reduce the time this stage requires.
run-prepare-integration:
resource_group: disable-concurrency
stage: prepare-integration-test
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- cd test/integration
- . prepare_environment.sh
- *lb-tear-down
# Actually run the integration tests
run-gameoflife-test:
resource_group: disable-concurrency
stage: integration-test
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running GameOfLife (PIRA II) integration test'
- cd test/integration/GameOfLife
- ./run.sh
- *lb-tear-down
run-gameoflife-test-slurm:
resource_group: disable-concurrency
stage: integration-test
allow_failure: true
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running GameOfLife Slurm (PIRA II) integration test'
- cd test/integration/GameOfLife_Slurm
- ./run.sh
- *lb-tear-down
run-amg2013-test:
resource_group: disable-concurrency
stage: integration-test
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running AMG integration test'
- cd test/integration/AMG2013
- ./run.sh
- *lb-tear-down
run-amg2013-test-slurm:
resource_group: disable-concurrency
stage: integration-test
allow_failure: true
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running AMG Slurm integration test'
- cd test/integration/AMG2013_Slurm
- ./run.sh
- *lb-tear-down
run-gameoflife-v1-test:
resource_group: disable-concurrency
stage: integration-test
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running GameOfLife (PIRA I) integration test'
- cd test/integration/GameOfLifePiraVersion1
- ./run.sh
- *lb-tear-down
run-gameoflife-v1-test-slurm:
resource_group: disable-concurrency
stage: integration-test
allow_failure: true
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running GameOfLife Slurm (PIRA I) integration test'
- cd test/integration/GameOfLifePiraVersion1_Slurm
- ./run.sh
- *lb-tear-down
run-gameoflife-hybrid-test:
resource_group: disable-concurrency
stage: integration-test
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running GameOfLife-hybrid-filtering integration test'
- cd test/integration/GameOfLife_hybrid_filter
- ./run.sh
- *lb-tear-down
run-gameoflife-hybrid-test-slurm:
resource_group: disable-concurrency
stage: integration-test
allow_failure: true
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running GameOfLife-hybrid-filtering Slurm integration test'
- cd test/integration/GameOfLife_hybrid_filter_Slurm
- ./run.sh
- *lb-tear-down
# Disabled as it requires MetaCG Version 2
run-gameoflife-heuristic-test:
resource_group: disable-concurrency
stage: integration-test
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running GameOfLife-heuristic integration test'
- cd test/integration/GameOfLife_heuristic
- ./run.sh
- *lb-tear-down
## XXX: For now we leave this out as a Slurm test, as it would not add
# any insight in whether the Slurm implementation works.
# This is meant to test if we have MetaCG file format 2 ready.
# run-gameoflife-heuristic-test-slurm:
# stage: integration-test
# tags:
# - pira-robo
# before_script: *lb-setup
# variables:
# GIT_STRATEGY: none
# GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
# script:
# - echo 'Running GameOfLife-heuristic Slurm integration test'
# - cd test/integration/GameOfLife_heuristic_Slurm
# - ./run.sh
# - *lb-tear-down
run-load-imbalance-detection-test:
resource_group: disable-concurrency
stage: integration-test
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running Load imbalance detection integration test'
- cd test/integration/LoadImbalance
- ./run.sh
- *lb-tear-down
run-load-imbalance-detection-test-slurm:
resource_group: disable-concurrency
stage: integration-test
allow_failure: true
only:
- merge_requests
- branches
- tags
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running Load imbalance detection Slurm integration test'
- cd test/integration/LoadImbalance_Slurm
- ./run.sh
- *lb-tear-down
run-lulesh-test:
resource_group: disable-concurrency
stage: integration-test
only:
- merge_requests
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running LULESH test (using PIRA LIDe)'
- cd test/integration/LULESH
- ./run.sh
- *lb-tear-down
run-lulesh-test-slurm:
resource_group: disable-concurrency
stage: integration-test
allow_failure: true
only:
- merge_requests
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: none
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- echo 'Running LULESH test on Slurm (using PIRA LIDe)'
- cd test/integration/LULESH_Slurm
- ./run.sh
- *lb-tear-down
# Disabled because it takes too long
# run-kripke-test:
# stage: integration-test
# only:
# - merge_requests
# tags:
# - pira-robo
# before_script: *lb-setup
# variables:
# GIT_STRATEGY: none
# GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
# script:
# - echo 'Running Kripke test (using PIRA I)'
# - cd test/integration/Kripke
# - ./run.sh
# - *lb-tear-down
# run-kripke-test-slurm:
# stage: integration-test
# only:
# - merge_requests
# tags:
# - pira-robo
# before_script: *lb-setup
# variables:
# GIT_STRATEGY: none
# GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
# script:
# - echo 'Running Kripke test on Slurm (using PIRA I)'
# - cd test/integration/Kripke_Slurm
# - ./run.sh
# - *lb-tear-down
# Do a full build of all dependencies via the convenience scripts for merge requests
build-all-deps:
resource_group: disable-concurrency
stage: full-dependence-test
only:
- merge_requests
tags:
- pira-robo
before_script: *lb-setup
variables:
GIT_STRATEGY: fetch
GIT_CLONE_PATH: $CI_BUILDS_DIR/$CI_COMMIT_SHA
script:
- module unload libcube extrap
- cd resources
- ./remove_builds.sh
- echo $CUBELIB_ROOT
- echo $EXTRAP_ROOT
- cat ./setup_paths.sh
- ./build_submodules.sh -p $(cat /proc/cpuinfo | grep processor | wc -l)
- *lb-tear-down