diff --git a/Jenkins/master-windows-pipeline/Jenkinsfile b/Jenkins/master-windows-pipeline/Jenkinsfile index 8ac6c6a..43c2f98 100644 --- a/Jenkins/master-windows-pipeline/Jenkinsfile +++ b/Jenkins/master-windows-pipeline/Jenkinsfile @@ -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" } } }