enabled all steps
This commit is contained in:
parent
57a57ec1fc
commit
06730d16f7
1 changed files with 3 additions and 5 deletions
8
Jenkins/BETA-phabricator-linux/Jenkinsfile
vendored
8
Jenkins/BETA-phabricator-linux/Jenkinsfile
vendored
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue