-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
171 lines (142 loc) · 4.17 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
include: /build/gitlab-ci.yml
variables:
PROJECT_PATH: "sosy-lab/software/cpachecker"
GH_REF: "github.com/sosy-lab/cpachecker"
.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-8:
<<: *configuration-checks
dependencies:
- build-dependencies
- build:jdk-8
configuration-checks:jdk-9:
<<: *configuration-checks
dependencies:
- build-dependencies
- build:jdk-9
image: ${CI_REGISTRY_IMAGE}/test:jdk-9
configuration-checks:jdk-10:
<<: *configuration-checks
dependencies:
- build-dependencies
- build:jdk-10
image: ${CI_REGISTRY_IMAGE}/test:jdk-10
# Temporarily allow failures until the segmentation fault is fixed
# (probably related to https://github.com/sosy-lab/java-smt/issues/132)
allow_failure: true
configuration-checks:jdk-11:
<<: *configuration-checks
dependencies:
- build-dependencies
- build:jdk-11
image: ${CI_REGISTRY_IMAGE}/test:jdk-11
# Temporarily allow failures until the segmentation fault is fixed
# (probably related to https://github.com/sosy-lab/java-smt/issues/132)
allow_failure: true
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-8
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-8:
<<: *python-unit-tests
dependencies:
- build-dependencies
- build:jdk-8
python-unit-tests:jdk-9:
<<: *python-unit-tests
dependencies:
- build-dependencies
- build:jdk-9
image: ${CI_REGISTRY_IMAGE}/test:jdk-9
python-unit-tests:jdk-10:
<<: *python-unit-tests
dependencies:
- build-dependencies
- build:jdk-10
image: ${CI_REGISTRY_IMAGE}/test:jdk-10
python-unit-tests:jdk-11:
<<: *python-unit-tests
dependencies:
- build-dependencies
- build:jdk-11
image: ${CI_REGISTRY_IMAGE}/test:jdk-11
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
when: always
javascript-e2e-tests:
stage: checks
dependencies:
- build-dependencies
- build:jdk-8
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
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)
# No coverage is computed for CPAchecker
unit-tests:jdk-8:
script: "ant $ANT_PROPS_CHECKS unit-tests"
unit-tests:jdk-9:
script: "ant $ANT_PROPS_CHECKS unit-tests"
unit-tests:jdk-10:
script: "ant $ANT_PROPS_CHECKS unit-tests"
unit-tests:jdk-11:
script: "ant $ANT_PROPS_CHECKS unit-tests"
# Disable some checks because they are not used for CPAchecker
check-format:
only: []
javadoc:
only: []