forked from sosy-lab/cpachecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
304 lines (264 loc) · 6.65 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
# This file is part of CPAchecker,
# a tool for configurable software verification:
# https://cpachecker.sosy-lab.org
#
# SPDX-FileCopyrightText: 2007-2020 Dirk Beyer <https://www.sosy-lab.org>
#
# SPDX-License-Identifier: Apache-2.0
include: /build/gitlab-ci.yml
variables:
PROJECT_PATH: "sosy-lab/software/cpachecker"
GH_REF: "github.com/sosy-lab/cpachecker"
# Version of https://gitlab.com/sosy-lab/software/refaster/ to use
REFASTER_REPO_REVISION: 8b7f38e2afedf64b3cfa9592bbb8790b88f58352
# Needs to be synchronized with Error Prone version in lib/ivy.xml
REFASTER_VERSION: 2.9.0
PIP_CACHE_DIR: "${CI_PROJECT_DIR}/.cache/pip"
npm_config_cache: "${CI_PROJECT_DIR}/.cache/npm"
npm_config_prefer_offline: "true"
.pip-cache: &pip-cache
cache:
key: "${CI_JOB_NAME}"
paths:
- ".cache/pip"
.node-cache: &node-cache
cache:
key: "${CI_JOB_NAME}"
paths:
- ".cache/npm"
.binary_check: &binary_check
stage: checks
.configuration-checks: &configuration-checks
<<: *binary_check
script: "ant $ANT_PROPS_CHECKS configuration-checks"
artifacts:
paths:
- "ConfigurationChecks.html"
- "hs_err_pid*.log"
when: always
reports:
junit: "output/configuration-checks/TESTS-TestSuites.xml"
configuration-checks:jdk-11:
<<: *configuration-checks
dependencies:
- build-dependencies
- build:jdk-11
needs:
- build-dependencies
- build:jdk-11
image: ${CI_REGISTRY_IMAGE}/test:jdk-11
configuration-checks:jdk-16:
<<: *configuration-checks
dependencies:
- build-dependencies
- build:jdk-16
needs:
- build-dependencies
- build:jdk-16
image: ${CI_REGISTRY_IMAGE}/test:jdk-16
configuration-documentation:
<<: *binary_check
script:
- "cp doc/ConfigurationOptions.txt doc/ConfigurationOptions.txt.old"
- "ant $ANT_PROPS_CHECKS build-documentation -Ddocumentation.uptodate=false"
- "diff doc/ConfigurationOptions.txt.old doc/ConfigurationOptions.txt"
dependencies:
- build-dependencies
- build:jdk-11
needs:
- build-dependencies
- build:jdk-11
configuration-plot:
stage: checks
script:
- "mkdir -p output"
- "touch output/AssumptionAutomaton.txt"
- "scripts/configViz.py > ConfigurationPlot.dot"
- "dot -Tsvg ConfigurationPlot.dot -O"
dependencies: []
needs: []
artifacts:
paths:
- "ConfigurationPlot.dot.svg"
forbidden-apis:
<<: *binary_check
script: "ant $ANT_PROPS_CHECKS forbiddenapis"
dependencies:
- build-dependencies
- build:jdk-11
needs:
- build-dependencies
- build:jdk-11
.python-unit-tests: &python-unit-tests
<<: *binary_check
script: "ant $ANT_PROPS_CHECKS python-unit-tests"
python-unit-tests:jdk-11:
<<: *python-unit-tests
dependencies:
- build-dependencies
- build:jdk-11
needs:
- build-dependencies
- build:jdk-11
image: ${CI_REGISTRY_IMAGE}/test:jdk-11
python-unit-tests:jdk-16:
<<: *python-unit-tests
dependencies:
- build-dependencies
- build:jdk-16
needs:
- build-dependencies
- build:jdk-16
image: ${CI_REGISTRY_IMAGE}/test:jdk-16
javascript-build:
stage: checks
dependencies: []
needs: []
image: ${CI_REGISTRY_IMAGE}/test:node
before_script:
- cd src/org/sosy_lab/cpachecker/core/counterexample/
- npm ci
script:
- npm run build
- git diff --stat --exit-code
artifacts:
paths:
- src/org/sosy_lab/cpachecker/core/counterexample/build
when: on_failure
<<: *node-cache
javascript-unit-tests:
stage: checks
dependencies: []
needs: []
image: ${CI_REGISTRY_IMAGE}/test:node
before_script:
- cd src/org/sosy_lab/cpachecker/core/counterexample/
- npm ci
script:
- npm test
cache:
paths:
- "src/org/sosy_lab/cpachecker/core/counterexample/node_modules/"
artifacts:
paths:
- src/org/sosy_lab/cpachecker/core/counterexample/unit_testing_report.html
when: always
<<: *node-cache
javascript-eslint:
stage: checks
dependencies: []
needs: []
image: ${CI_REGISTRY_IMAGE}/test:node
before_script:
- cd src/org/sosy_lab/cpachecker/core/counterexample/
- npm ci
script:
- npm run lint
<<: *node-cache
build-docker:test:java-node:
extends: .build-docker
variables:
DOCKERFILE: build/gitlab-ci.Dockerfile.java-node
IMAGE: /test:java-node
build-docker:test:node:
extends: .build-docker
variables:
DOCKERFILE: build/gitlab-ci.Dockerfile.node
IMAGE: /test:node
build-docker:release:
extends: .build-docker
variables:
DOCKERFILE: build/Dockerfile.release
IMAGE: ":2.0"
EXTRA_ARGS: "--destination $CI_REGISTRY_IMAGE:latest"
javascript-e2e-tests:
stage: checks
dependencies:
- build-dependencies
- build:jdk-11
needs:
- build-dependencies
- build:jdk-11
image: ${CI_REGISTRY_IMAGE}/test:java-node
before_script:
# generate example report
- scripts/cpa.sh -predicateAnalysis test/programs/simple/SSAMap-bug.c
- cd src/org/sosy_lab/cpachecker/core/counterexample/
- npm ci
- "npx webdriver-manager update --versions.chrome $(dpkg-query --showformat='${Version}' --show google-chrome-stable)"
script:
- npm run e2e-test
cache:
paths:
- src/org/sosy_lab/cpachecker/core/counterexample/node_modules/
artifacts:
paths:
- output/Counterexample.1.html
- src/org/sosy_lab/cpachecker/core/counterexample/e2e-tests-report
when: always
# Checks for Python code
check-format-python:
stage: checks
dependencies: []
needs: []
image: python
before_script:
- pip install black
script:
- black . --check --diff
<<: *pip-cache
flake8:
stage: checks
dependencies: []
needs: []
image: python:3.8
before_script:
- "pip install 'flake8<4' flake8-awesome"
script:
- flake8
<<: *pip-cache
build-tar:
stage: checks
dependencies:
- build-dependencies
- build:jdk-11
needs:
- build-dependencies
- build:jdk-11
script: "ant $ANT_PROPS_CHECKS dist-unix -Dnamet=cpachecker"
artifacts:
paths:
- "cpachecker.tar.bz2"
only:
refs:
- trunk
deploy-docker:
stage: deploy
dependencies:
- build-tar
needs:
- build-tar
extends: .build-docker
variables:
DOCKERFILE: build/Dockerfile.dev
IMAGE: ":dev"
EXTRA_ARGS: "--context dir://."
only:
refs:
- trunk
# No coverage is computed for CPAchecker
unit-tests:jdk-11:
script: "ant $ANT_PROPS_CHECKS unit-tests"
artifacts:
reports:
junit: "output/junit/TESTS-TestSuites.xml"
unit-tests:jdk-16:
script: "ant $ANT_PROPS_CHECKS unit-tests"
artifacts:
reports:
junit: "output/junit/TESTS-TestSuites.xml"
# Disable some checks because they are not used for CPAchecker
check-format:
only: []
javadoc:
only: []