@@ -14,7 +14,7 @@ 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
20
sh ' cd build && make check -j4 || true'
@@ -30,7 +30,7 @@ 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
36
sh ' cd build && make check -j4 || true'
@@ -45,7 +45,7 @@ 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
51
sh ' cd build && make check -j4 || true'
@@ -60,7 +60,7 @@ 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
66
sh ' cd build && make check -j4 || true'
@@ -85,7 +85,7 @@ 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
91
// sh 'cd build && make check -j4 || true'
@@ -100,7 +100,7 @@ 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
106
// sh 'cd build && make check -j4 || true'
@@ -115,7 +115,7 @@ 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
121
// sh 'cd build && make check -j4 || true'
@@ -130,7 +130,7 @@ 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
136
// sh 'cd build && make check -j4 || true'
@@ -175,7 +175,7 @@ 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
181
// sh 'cd build && make check -j4 || true'
@@ -190,7 +190,7 @@ 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
196
// sh 'cd build && make check -j4 || true'
@@ -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