-
Notifications
You must be signed in to change notification settings - Fork 21
/
.gitlab-ci.yml
192 lines (168 loc) · 3.61 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
variables:
GIT_SUBMODULE_STRATEGY: normal
stages:
- min-bundles
- basic-bundles
- test
default:
tags:
- ciao_test_base
core:
stage: min-bundles
script:
- builder/etc/gitlab-ci.sh core
artifacts:
expire_in: 2h
untracked: true
paths:
- build-boot/
- build/
needs: []
core.test:
stage: min-bundles
script:
- builder/etc/gitlab-ci.sh core.test
needs: [core]
core_OC.test:
stage: min-bundles
script:
- builder/etc/gitlab-ci.sh core_OC.test
needs: [core]
ciaopp:
stage: basic-bundles
script:
- builder/etc/gitlab-ci.sh ciaopp
artifacts:
expire_in: 2h
untracked: true
paths:
- build-boot/
- build/
needs: [core]
ciaopp_lite:
stage: basic-bundles
script:
- builder/etc/gitlab-ci.sh ciaopp_lite
artifacts:
expire_in: 2h
untracked: true
paths:
- build-boot/
- build/
needs: [core]
ciaopp_lite.test.incanal_assrts:
stage: test
script:
- builder/etc/gitlab-ci.sh ciaopp_lite.test.incanal_assrts
needs: [ciaopp_lite]
ciaopp_lite.analyze.core:
stage: test
script:
- builder/etc/gitlab-ci.sh ciaopp_lite.analyze.core
needs: [ciaopp_lite]
artifacts:
when: always
paths:
- build/xmlreport/*.xml
reports:
junit:
- build/xmlreport/module.xml
- build/xmlreport/gr.xml
ciaopp_lite.test.rtchecks:
stage: test
script:
- builder/etc/gitlab-ci.sh ciaopp_lite.test.rtchecks
needs: [ciaopp_lite]
ciaopp_lite.test.incanal:
stage: test
script:
- builder/etc/gitlab-ci.sh ciaopp_lite.test.incanal
needs: [ciaopp_lite]
ciaopp_extra.test:
stage: test
allow_failure: true
script:
- builder/etc/gitlab-ci.sh ciaopp_extra.test
needs: [ciaopp]
ciaopp_cost.test:
stage: test
allow_failure: true
script:
- builder/etc/gitlab-ci.sh ciaopp_cost.test
needs: [ciaopp]
# This job should (probably) be removed once res_plai tests are fixed/checked/updated
# It is created to have a small set of tests for which res_plai output is
# trusted to be correct and precise on 31/01/23.
ciaopp_cost.test.smalltrustedtmp.resplai:
stage: test
allow_failure: true
script:
- builder/etc/gitlab-ci.sh ciaopp_cost.test.smalltrustedtmp.resplai
needs: [ciaopp]
lpdoc:
stage: basic-bundles
script:
- builder/etc/gitlab-ci.sh lpdoc
needs: [core]
bibutils:
stage: basic-bundles
script:
- builder/etc/gitlab-ci.sh bibutils
needs: [core]
jvm_in_ciao:
stage: basic-bundles
script:
- builder/etc/gitlab-ci.sh jvm_in_ciao
needs: [core]
ciao_gui:
stage: basic-bundles
script:
- builder/etc/gitlab-ci.sh ciao_gui
needs: [core]
wui:
stage: basic-bundles
allow_failure: true
retry:
max: 2
when: script_failure
script:
- builder/etc/gitlab-ci.sh wui
artifacts:
expire_in: 2h
untracked: true
paths:
- build/
cache:
paths:
- third-party/
needs: [core]
website:
stage: test
allow_failure: true
script:
- builder/etc/gitlab-ci.sh website
needs: [wui]
iso_tests.test:
stage: test
script:
- builder/etc/gitlab-ci.sh iso_tests.test
allow_failure: true
needs: [core]
ciao_emacs.test:
stage: test
script:
- DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get update
- DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -qq install -y --no-install-recommends emacs-nox
- builder/etc/gitlab-ci.sh ciao_emacs.test
needs: [core]
deepfind.test:
stage: test
script:
- builder/etc/gitlab-ci.sh deepfind.test
needs: [ciaopp_lite]
exfilter.test:
stage: test
script:
- builder/etc/gitlab-ci.sh exfilter.test
allow_failure: true
needs: [ciaopp]