@@ -9,7 +9,7 @@ pipeline {
9
9
agent {
10
10
docker {
11
11
image ' ubuntu:xenial'
12
- args ' -v ${WORKSPACE}/../builds/${BUILD_ID}:/job:rw'
12
+ // args '-v ${WORKSPACE}/../builds/${BUILD_ID}:/job:rw'
13
13
}
14
14
}
15
15
steps {
@@ -18,7 +18,7 @@ pipeline {
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'
21
- sh ' cd build && cp -pr test /job/' // special tests collection step just for this stage
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'
24
24
sh ' sudo apt-get -qq update && sudo apt-get -qq -y --no-install-recommends install wget default-jdk default-jre' // prerequisites for jdbc_validator
@@ -177,7 +177,7 @@ pipeline {
177
177
// sh 'sudo /bin/bash -c "source ./script/installation/packages.sh"'
178
178
// sh 'python ./script/validators/source_validator.py'
179
179
// sh 'mkdir build'
180
- // sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Debug -DUSE_SANITIZER=Address - DCOVERALLS=False .. && make -j4'
180
+ // sh 'cd build && cmake3 -DCMAKE_BUILD_TYPE=Debug -DCOVERALLS=False .. && make -j4'
181
181
// sh 'cd build && make check -j4 || true'
182
182
// sh 'cd build && make install'
183
183
// sh 'cd build && bash ../script/testing/psql/psql_test.sh'
@@ -296,11 +296,11 @@ pipeline {
296
296
}
297
297
298
298
// Process test results from the first build stage
299
- post {
300
- always {
301
- dir(" ${ WORKSPACE} /../builds/${ BUILD_ID} " ) {
302
- step([$class : ' XUnitBuilder' , testTimeMargin : ' 3000' , thresholdMode : 1 , thresholds : [[$class : ' FailedThreshold' , failureNewThreshold : ' ' , failureThreshold : ' ' , unstableNewThreshold : ' ' , unstableThreshold : ' ' ], [$class : ' SkippedThreshold' , failureNewThreshold : ' ' , failureThreshold : ' ' , unstableNewThreshold : ' ' , unstableThreshold : ' ' ]], tools : [[$class : ' GoogleTestType' , deleteOutputFiles : true , failIfNotNew : true , pattern : ' test/*_test.xml' , skipNoTestFiles : false , stopProcessingIfError : true ]]])
303
- }
304
- }
305
- }
299
+ // post {
300
+ // always {
301
+ // dir("${WORKSPACE}/../builds/${BUILD_ID}") {
302
+ // step([$class: 'XUnitBuilder', testTimeMargin: '3000', thresholdMode: 1, thresholds: [[$class: 'FailedThreshold', failureNewThreshold: '', failureThreshold: '', unstableNewThreshold: '', unstableThreshold: ''], [$class: 'SkippedThreshold', failureNewThreshold: '', failureThreshold: '', unstableNewThreshold: '', unstableThreshold: '']], tools: [[$class: 'GoogleTestType', deleteOutputFiles: true, failIfNotNew: true, pattern: 'test/*_test.xml', skipNoTestFiles: false, stopProcessingIfError: true]]])
303
+ // }
304
+ // }
305
+ // }
306
306
}
0 commit comments