changed directory layout
This commit is contained in:
parent
f6c1fadc95
commit
2a2944e5c3
1 changed files with 14 additions and 6 deletions
20
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
20
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -35,24 +35,32 @@ pipeline {
|
||||||
{
|
{
|
||||||
git url: 'https://github.com/google/llvm-premerge-checks.git'
|
git url: 'https://github.com/google/llvm-premerge-checks.git'
|
||||||
}
|
}
|
||||||
powershell "${SCRIPT_DIR}/git_checkout.ps1"
|
dir("llvm-project"){
|
||||||
powershell 'New-Item -ItemType Directory -Force -Path llvm-premerge-checks'
|
powershell "${SCRIPT_DIR}/git_checkout.ps1"
|
||||||
powershell 'New-Item -ItemType Directory -Force -Path ${TARGET_DIR}'
|
powershell 'New-Item -ItemType Directory -Force -Path ${TARGET_DIR}'
|
||||||
|
powershell 'New-Item -ItemType Directory -Force -Path ${RESULT_DIR}'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('CMake') {
|
stage('CMake') {
|
||||||
steps {
|
steps {
|
||||||
powershell "${SCRIPT_DIR}/run_cmake.ps1"
|
dir("llvm-project"){
|
||||||
|
powershell "${SCRIPT_DIR}/run_cmake.ps1"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('ninja all') {
|
stage('ninja all') {
|
||||||
steps {
|
steps {
|
||||||
powershell "${SCRIPT_DIR}/run_ninja.ps1 all"
|
dir("llvm-project"){
|
||||||
|
powershell "${SCRIPT_DIR}/run_ninja.ps1 all"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('ninja check-all') {
|
stage('ninja check-all') {
|
||||||
steps {
|
steps {
|
||||||
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all"
|
dir("llvm-project"){
|
||||||
|
powershell "${SCRIPT_DIR}/run_ninja.ps1 check-all"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue