forked from sosy-lab/cpachecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
189 lines (159 loc) · 4.48 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
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: 3b7e6c0d396d6073e8a27bccdce160abb1ccdaa7
# Needs to be synchronized with Error Prone version in lib/ivy.xml
REFASTER_VERSION: 2.3.4
build:jdk-13:
variables:
# https://github.com/google/error-prone/issues/1106
ANT_PROPS_BUILD: "-Divy.disable=true -Derrorprone.disable=true"
.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
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-13:
<<: *configuration-checks
dependencies:
- build-dependencies
- build:jdk-13
needs:
- build-dependencies
- build:jdk-13
image: ${CI_REGISTRY_IMAGE}/test:jdk-13
configuration-documentation:
<<: *binary_check
script:
- "cp doc/ConfigurationOptions.txt doc/ConfigurationOptions.txt.old"
- "ant $ANT_PROPS_CHECKS build-documentation"
- "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: []
artifacts:
paths:
- "ConfigurationPlot.dot.svg"
.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-13:
<<: *python-unit-tests
dependencies:
- build-dependencies
- build:jdk-13
needs:
- build-dependencies
- build:jdk-13
image: ${CI_REGISTRY_IMAGE}/test:jdk-13
javascript-unit-tests:
stage: checks
dependencies: []
image: node:8.10.0 # This version is also provided by Ubuntu 18.04
before_script:
- cd src/org/sosy_lab/cpachecker/core/counterexample/
- npm install
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
build-docker:test:java-node:
extends: .build-docker
variables:
DOCKERFILE: build/gitlab-ci.Dockerfile.java-node
IMAGE: test:java-node
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_false-unreach-label.c
- cd src/org/sosy_lab/cpachecker/core/counterexample/
- npm install
- "./node_modules/protractor/node_modules/webdriver-manager/bin/webdriver-manager update --versions.chrome $(dpkg-query --showformat='${Version}' --show chromium-browser)"
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
allow_failure: true # tests are currently racy (cf. #520)
# Checks for Python code
check-format-python:
stage: checks
dependencies: []
image: python
before_script:
- pip install black
script:
- black . --check --diff
flake8:
stage: checks
dependencies: []
image: python
before_script:
- pip install flake8-awesome
script:
- flake8
allow_failure: true # need to fix existing code first
# No coverage is computed for CPAchecker
unit-tests:jdk-11:
script: "ant $ANT_PROPS_CHECKS unit-tests"
unit-tests:jdk-13:
script: "ant $ANT_PROPS_CHECKS unit-tests"
# Disable some checks because they are not used for CPAchecker
check-format:
only: []
javadoc:
only: []