1
0
Fork 0

added python prefixes

This commit is contained in:
Christian Kühnel 2020-04-24 13:47:00 +02:00
parent 8f2cc6f5b4
commit c7dda433a1

View file

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