template now return 0
All checks were successful
test-jenkins/jenkins-template/pipeline/head This commit looks good
ci-tests/jenkins-template/pipeline/head This commit looks good

This commit is contained in:
2020-11-15 19:20:27 +02:00
parent 6cc2171518
commit c6dd5552cc

2
Jenkinsfile vendored
View File

@@ -22,7 +22,7 @@ pipeline {
stage('Quality-gate') {
steps {
echo "Sonaqube static code analysis passed!!"
sh 'return 1' // change to 1 for testing a failure
sh 'return 0' // change to 1 for testing a failure
}
}