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