forked from LLNL/Caliper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
53 lines (48 loc) · 1.05 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
.build-quartz:
stage: build
tags:
- quartz
- shell
script:
- echo "==== ${build_config} ===="
- mkdir build-${build_config} && cd build-${build_config}
- cmake -C ../cmake/hostconfig/gitlab-${build_config}.cmake ..
- make
- ctest --output-on-failure
build-quartz-gcc:
variables:
build_config: "quartz-gcc"
extends: .build-quartz
artifacts:
paths:
- build-quartz-gcc/
build-quartz-intel:
variables:
build_config: "quartz-intel"
extends: .build-quartz
build-quartz-pgi:
variables:
build_config: "quartz-pgi"
extends: .build-quartz
perftest-quartz:
stage: test
tags:
- quartz
- shell
script:
- cd build-quartz-gcc
- ../scripts/run-annotation-perftest.sh
dependencies:
- build-quartz-gcc
build-butte-xlc:
stage: build
tags:
- butte
- shell
script:
- echo "==== Build butte/xlc ===="
- module load cmake
- mkdir build-butte-xlc && cd build-butte-xlc
- cmake -C ../cmake/hostconfig/gitlab-butte-xlc.cmake ..
- make
- ctest --output-on-failure