1
0
Fork 0

changed directory layout

This commit is contained in:
Christian Kühnel 2019-12-13 16:15:20 +00:00
parent f6c1fadc95
commit 2a2944e5c3

View file

@ -35,24 +35,32 @@ pipeline {
{
git url: 'https://github.com/google/llvm-premerge-checks.git'
}
powershell "${SCRIPT_DIR}/git_checkout.ps1"
powershell 'New-Item -ItemType Directory -Force -Path llvm-premerge-checks'
powershell 'New-Item -ItemType Directory -Force -Path ${TARGET_DIR}'
dir("llvm-project"){
powershell "${SCRIPT_DIR}/git_checkout.ps1"
powershell 'New-Item -ItemType Directory -Force -Path ${TARGET_DIR}'
powershell 'New-Item -ItemType Directory -Force -Path ${RESULT_DIR}'
}
}
}
stage('CMake') {
steps {
powershell "${SCRIPT_DIR}/run_cmake.ps1"
dir("llvm-project"){
powershell "${SCRIPT_DIR}/run_cmake.ps1"
}
}
}
stage('ninja all') {
steps {
powershell "${SCRIPT_DIR}/run_ninja.ps1 all"
dir("llvm-project"){
powershell "${SCRIPT_DIR}/run_ninja.ps1 all"
}
}
}
stage('ninja check-all') {
steps {
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all"
dir("llvm-project"){
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all"
}
}
}
}