1
0
Fork 0

moving master pipelines to python scripts

This commit is contained in:
Christian Kühnel 2020-04-15 13:24:26 +02:00
parent 378b5131ea
commit 537617af83
2 changed files with 6 additions and 6 deletions

View file

@ -39,17 +39,17 @@ pipeline {
} }
stage('CMake') { stage('CMake') {
steps { steps {
sh "${SCRIPT_DIR}/run_cmake.sh" sh "${SCRIPT_DIR}/run_cmake.py"
} }
} }
stage('ninja all') { stage('ninja all') {
steps { steps {
sh "${SCRIPT_DIR}/run_ninja.sh all" sh "${SCRIPT_DIR}/run_ninja.py all"
} }
} }
stage('ninja check-all') { stage('ninja check-all') {
steps { steps {
sh "${SCRIPT_DIR}/run_ninja.sh check-all" sh "${SCRIPT_DIR}/run_ninja.py check-all"
} }
} }
} }

View file

@ -47,21 +47,21 @@ pipeline {
stage('CMake') { stage('CMake') {
steps { steps {
dir("${LLVM_DIR}"){ dir("${LLVM_DIR}"){
powershell "${SCRIPT_DIR}/run_cmake.ps1" powershell "${SCRIPT_DIR}/run_cmake.py"
} }
} }
} }
stage('ninja all') { stage('ninja all') {
steps { steps {
dir("${LLVM_DIR}"){ dir("${LLVM_DIR}"){
powershell "${SCRIPT_DIR}/run_ninja.ps1 all" powershell "${SCRIPT_DIR}/run_ninja.py all"
} }
} }
} }
stage('ninja check-all') { stage('ninja check-all') {
steps { steps {
dir("${LLVM_DIR}"){ dir("${LLVM_DIR}"){
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all" powershell "${SCRIPT_DIR}/run_ninja.py check-all"
} }
} }
} }