@@ -14,10 +14,10 @@ pipeline {
14
14
}
15
15
steps {
16
16
sh ' sudo /bin/bash -c "source ./script/installation/packages.sh"'
17
- sh ' python ./ script/validators/source_validator.py'
17
+ sh ' python script/validators/source_validator.py'
18
18
sh ' mkdir build'
19
19
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
20
- sh ' cd build && make check -j4 || true '
20
+ sh ' cd build && make check -j4'
21
21
// sh 'cd build && cp -pr test /job/' // special tests collection step just for this stage
22
22
sh ' cd build && make install'
23
23
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
@@ -30,10 +30,10 @@ pipeline {
30
30
agent { docker { image ' ubuntu:xenial' } }
31
31
steps {
32
32
sh ' sudo /bin/bash -c "source ./script/installation/packages.sh"'
33
- sh ' python ./ script/validators/source_validator.py'
33
+ sh ' python script/validators/source_validator.py'
34
34
sh ' mkdir build'
35
35
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
36
- sh ' cd build && make check -j4 || true '
36
+ sh ' cd build && make check -j4'
37
37
sh ' cd build && make install'
38
38
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
39
39
sh ' sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -45,10 +45,10 @@ pipeline {
45
45
agent { docker { image ' ubuntu:trusty' } }
46
46
steps {
47
47
sh ' sudo /bin/bash -c "source ./script/installation/packages.sh"'
48
- sh ' python ./ script/validators/source_validator.py'
48
+ sh ' python script/validators/source_validator.py'
49
49
sh ' mkdir build'
50
50
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
51
- sh ' cd build && make check -j4 || true '
51
+ sh ' cd build && make check -j4'
52
52
sh ' cd build && make install'
53
53
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
54
54
sh ' sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -60,10 +60,10 @@ pipeline {
60
60
agent { docker { image ' ubuntu:trusty' } }
61
61
steps {
62
62
sh ' sudo /bin/bash -c "source ./script/installation/packages.sh"'
63
- sh ' python ./ script/validators/source_validator.py'
63
+ sh ' python script/validators/source_validator.py'
64
64
sh ' mkdir build'
65
65
sh ' cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
66
- sh ' cd build && make check -j4 || true '
66
+ sh ' cd build && make check -j4'
67
67
sh ' cd build && make install'
68
68
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
69
69
sh ' sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -85,10 +85,10 @@ pipeline {
85
85
// agent { docker { image 'debian:stretch' } }
86
86
// steps {
87
87
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
88
- // sh 'python ./ script/validators/source_validator.py'
88
+ // sh 'python script/validators/source_validator.py'
89
89
// sh 'mkdir build'
90
90
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
91
- // sh 'cd build && make check -j4 || true '
91
+ // sh 'cd build && make check -j4'
92
92
// sh 'cd build && make install'
93
93
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
94
94
// sh 'sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -100,10 +100,10 @@ pipeline {
100
100
// agent { docker { image 'debian:stretch' } }
101
101
// steps {
102
102
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
103
- // sh 'python ./ script/validators/source_validator.py'
103
+ // sh 'python script/validators/source_validator.py'
104
104
// sh 'mkdir build'
105
105
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
106
- // sh 'cd build && make check -j4 || true '
106
+ // sh 'cd build && make check -j4'
107
107
// sh 'cd build && make install'
108
108
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
109
109
// sh 'sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -115,10 +115,10 @@ pipeline {
115
115
// agent { docker { image 'fedora:26' } }
116
116
// steps {
117
117
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
118
- // sh 'python ./ script/validators/source_validator.py'
118
+ // sh 'python script/validators/source_validator.py'
119
119
// sh 'mkdir build'
120
120
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
121
- // sh 'cd build && make check -j4 || true '
121
+ // sh 'cd build && make check -j4'
122
122
// sh 'cd build && make install'
123
123
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
124
124
// sh 'sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -130,10 +130,10 @@ pipeline {
130
130
// agent { docker { image 'fedora:26' } }
131
131
// steps {
132
132
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
133
- // sh 'python ./ script/validators/source_validator.py'
133
+ // sh 'python script/validators/source_validator.py'
134
134
// sh 'mkdir build'
135
135
// sh 'cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
136
- // sh 'cd build && make check -j4 || true '
136
+ // sh 'cd build && make check -j4'
137
137
// sh 'cd build && make install'
138
138
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
139
139
// sh 'sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -148,7 +148,7 @@ pipeline {
148
148
sh ' python ./script/validators/source_validator.py'
149
149
sh ' mkdir build'
150
150
sh ' cd build && PATH=/usr/lib64/llvm4.0/bin:$PATH cmake -DCMAKE_CXX_FLAGS="-isystem /usr/include/llvm4.0" -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address -DCOVERALLS=False .. && make -j4'
151
- sh ' cd build && make check -j4 || true '
151
+ sh ' cd build && make check -j4'
152
152
sh ' cd build && make install'
153
153
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
154
154
sh ' sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -163,7 +163,7 @@ pipeline {
163
163
sh ' python ./script/validators/source_validator.py'
164
164
sh ' mkdir build'
165
165
sh ' cd build && PATH=/usr/lib64/llvm4.0/bin:$PATH cmake -DCMAKE_CXX_FLAGS="-isystem /usr/include/llvm4.0" -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
166
- sh ' cd build && make check -j4 || true '
166
+ sh ' cd build && make check -j4'
167
167
sh ' cd build && make install'
168
168
sh ' cd build && bash ../script/testing/psql/psql_test.sh'
169
169
sh ' sudo dnf -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -175,10 +175,10 @@ pipeline {
175
175
// agent { docker { image 'centos:7' } }
176
176
// steps {
177
177
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
178
- // sh 'python ./ script/validators/source_validator.py'
178
+ // sh 'python script/validators/source_validator.py'
179
179
// sh 'mkdir build'
180
180
// sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
181
- // sh 'cd build && make check -j4 || true '
181
+ // sh 'cd build && make check -j4'
182
182
// sh 'cd build && make install'
183
183
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
184
184
// sh 'sudo yum -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -190,10 +190,10 @@ pipeline {
190
190
// agent { docker { image 'centos:7' } }
191
191
// steps {
192
192
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
193
- // sh 'python ./ script/validators/source_validator.py'
193
+ // sh 'python script/validators/source_validator.py'
194
194
// sh 'mkdir build'
195
195
// sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
196
- // sh 'cd build && make check -j4 || true '
196
+ // sh 'cd build && make check -j4'
197
197
// sh 'cd build && make install'
198
198
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
199
199
// sh 'sudo yum -q install -y wget java-devel' // prerequisites for jdbc_validator
@@ -207,7 +207,7 @@ pipeline {
207
207
// agent { docker { image 'ubuntu:xenial' } }
208
208
// steps {
209
209
// sh 'sudo /bin/bash -c "source ./peloton/script/installation/packages.sh"'
210
- // sh 'python ./ script/validators/source_validator.py'
210
+ // sh 'python script/validators/source_validator.py'
211
211
// sh 'mkdir build'
212
212
// sh 'cd build && CC=clang-3.7 CXX=clang++-3.7 cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4 && make install'
213
213
// }
@@ -217,7 +217,7 @@ pipeline {
217
217
// agent { docker { image 'ubuntu:xenial' } }
218
218
// steps {
219
219
// sh 'sudo /bin/bash -c "source ./peloton/script/installation/packages.sh"'
220
- // sh 'python ./ script/validators/source_validator.py'
220
+ // sh 'python script/validators/source_validator.py'
221
221
// sh 'mkdir build'
222
222
// sh 'cd build && CC=clang-3.7 CXX=clang++-3.7 cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4 && make install'
223
223
// }
@@ -227,7 +227,7 @@ pipeline {
227
227
// agent { docker { image 'ubuntu:trusty' } }
228
228
// steps {
229
229
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
230
- // sh 'python ./ script/validators/source_validator.py'
230
+ // sh 'python script/validators/source_validator.py'
231
231
// sh 'mkdir build'
232
232
// sh 'cd build && CC=clang-3.7 CXX=clang++-3.7 cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
233
233
// }
@@ -237,7 +237,7 @@ pipeline {
237
237
// agent { docker { image 'ubuntu:trusty' } }
238
238
// steps {
239
239
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
240
- // sh 'python ./ script/validators/source_validator.py'
240
+ // sh 'python script/validators/source_validator.py'
241
241
// sh 'mkdir build'
242
242
// sh 'cd build && CC=clang-3.7 CXX=clang++-3.7 cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
243
243
// }
@@ -247,7 +247,7 @@ pipeline {
247
247
// agent { docker { image 'fedora:26' } }
248
248
// steps {
249
249
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
250
- // sh 'python ./ script/validators/source_validator.py'
250
+ // sh 'python script/validators/source_validator.py'
251
251
// sh 'mkdir build'
252
252
// sh 'cd build && CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
253
253
// }
@@ -257,7 +257,7 @@ pipeline {
257
257
// agent { docker { image 'fedora:26' } }
258
258
// steps {
259
259
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
260
- // sh 'python ./ script/validators/source_validator.py'
260
+ // sh 'python script/validators/source_validator.py'
261
261
// sh 'mkdir build'
262
262
// sh 'cd build && CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
263
263
// }
@@ -267,7 +267,7 @@ pipeline {
267
267
// agent { docker { image 'fedora:27' } }
268
268
// steps {
269
269
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
270
- // sh 'python ./ script/validators/source_validator.py'
270
+ // sh 'python script/validators/source_validator.py'
271
271
// sh 'mkdir build'
272
272
// sh 'cd build && CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
273
273
// }
@@ -277,7 +277,7 @@ pipeline {
277
277
// agent { docker { image 'fedora:27' } }
278
278
// steps {
279
279
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
280
- // sh 'python ./ script/validators/source_validator.py'
280
+ // sh 'python script/validators/source_validator.py'
281
281
// sh 'mkdir build'
282
282
// sh 'cd build && CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release -DCOVERALLS=False .. && make -j4'
283
283
// }
0 commit comments