added python prefixes
This commit is contained in:
parent
8f2cc6f5b4
commit
c7dda433a1
1 changed files with 3 additions and 3 deletions
6
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
6
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -58,21 +58,21 @@ pipeline {
|
||||||
stage('CMake') {
|
stage('CMake') {
|
||||||
steps {
|
steps {
|
||||||
dir("${LLVM_DIR}"){
|
dir("${LLVM_DIR}"){
|
||||||
powershell "${SCRIPT_DIR}/run_cmake.py"
|
powershell "python ${SCRIPT_DIR}/run_cmake.py"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('ninja all') {
|
stage('ninja all') {
|
||||||
steps {
|
steps {
|
||||||
dir("${LLVM_DIR}"){
|
dir("${LLVM_DIR}"){
|
||||||
powershell "${SCRIPT_DIR}/run_ninja.py all"
|
powershell "python ${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.py check-all"
|
powershell "python s${SCRIPT_DIR}/run_ninja.py check-all"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue