fixed checkout path
This commit is contained in:
parent
5b0d53313d
commit
76c87d3340
1 changed files with 5 additions and 5 deletions
10
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
10
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -31,15 +31,15 @@ pipeline {
|
|||
stages {
|
||||
stage("git checkout"){
|
||||
steps {
|
||||
echo "getting llvm-premerge-checks... "
|
||||
dir("llvm-premerge-checks")
|
||||
{
|
||||
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 ${TARGET_DIR}'
|
||||
powershell 'New-Item -ItemType Directory -Force -Path ${RESULT_DIR}'
|
||||
}
|
||||
echo "getting 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') {
|
||||
|
|
Loading…
Reference in a new issue