1
0
Fork 0

enabled all steps

This commit is contained in:
Christian Kühnel 2020-03-23 17:25:24 +01:00
parent 57a57ec1fc
commit 06730d16f7

View file

@ -78,7 +78,7 @@ pipeline {
success = false success = false
failure_message = "Failed to run cmake" failure_message = "Failed to run cmake"
} }
sh "${SCRIPT_DIR}/run_cmake.py --projects detect" sh "${SCRIPT_DIR}/run_cmake.py detect"
script { script {
success = true success = true
failure_message = "" failure_message = ""
@ -86,14 +86,13 @@ pipeline {
} }
} }
} }
/*
stage('ninja all') { stage('ninja all') {
steps { steps {
dir("${LLVM_DIR}") dir("${LLVM_DIR}")
{ {
script { script {
try { try {
sh(script: "${SCRIPT_DIR}/run_ninja.sh all") sh(script: "${SCRIPT_DIR}/run_ninja.py all")
} catch (e) { } catch (e) {
success = false; success = false;
failure_message = "'ninja all' failed" // append as build might already be broken failure_message = "'ninja all' failed" // append as build might already be broken
@ -109,7 +108,7 @@ pipeline {
{ {
script { script {
try { try {
sh(script: "${SCRIPT_DIR}/run_ninja.sh check-all") sh(script: "${SCRIPT_DIR}/run_ninja.py check-all")
} catch (e) { } catch (e) {
success = false; success = false;
failure_message += "\n'ninja check-all' failed" // append as build might already be broken failure_message += "\n'ninja check-all' failed" // append as build might already be broken
@ -136,7 +135,6 @@ pipeline {
} }
} }
} }
*/
} }
post { post {
always { always {