moving master pipelines to python scripts
This commit is contained in:
parent
378b5131ea
commit
537617af83
2 changed files with 6 additions and 6 deletions
6
Jenkins/master-linux-pipeline/Jenkinsfile
vendored
6
Jenkins/master-linux-pipeline/Jenkinsfile
vendored
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
6
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
6
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue