-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
91 lines (83 loc) · 1.66 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
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build_gnu-7.4
- build_gnu-7.5
- build_gnu-9.3
- build_intel
- build_xc50
before_script:
- export CLICOLOR_FORCE=1
build_xc50:
stage: build_xc50
tags:
- XC50-login
when: always
script:
- set +e
- source ci-env/latest/sles-15-skylake-64/intel-19.0.5.281.sh
- mkdir build-intel-xc50
- cd build-intel-xc50
- cmake ..
- make -j `nproc`
- make package
artifacts:
expire_in: 2 hrs
paths:
- build-intel-xc50
build_intel:
stage: build_intel
when: always
script:
- source ci-env/latest/ubuntu-18.04-skylake-64/intel-19.0.3.199.sh
- mkdir build-intel
- cd build-intel
- cmake ..
- make -j `nproc`
- make package
artifacts:
expire_in: 2 hrs
paths:
- build-intel
build_gnu-7.4:
stage: build_gnu-7.4
when: always
script:
- source ci-env/latest/ubuntu-18.04-amd-64/gnu-7.4.0.sh
- mkdir build-gnu-7.4
- cd build-gnu-7.4
- cmake ..
- make -j `nproc`
- make package
artifacts:
expire_in: 2 hrs
paths:
- build-gnu-7.4
build_gnu-7.5:
stage: build_gnu-7.5
when: always
script:
- source ci-env/latest/ubuntu-18.04-amd-64/gnu-7.5.0.sh
- mkdir build-gnu-7.5
- cd build-gnu-7.5
- cmake ..
- make -j `nproc`
- make package
artifacts:
expire_in: 2 hrs
paths:
- build-gnu-7.5
build_gnu-9.3:
stage: build_gnu-9.3
when: always
script:
- source ci-env/latest/ubuntu-18.04-amd-64/gnu-9.3.0.sh
- mkdir build-gnu-9.3
- cd build-gnu-9.3
- cmake ..
- make -j `nproc`
- make package
artifacts:
expire_in: 2 hrs
paths:
- build-gnu-9.3