1
0
Fork 0

fixed checkout path

This commit is contained in:
Christian Kühnel 2019-12-16 09:24:25 +00:00
parent 5b0d53313d
commit 76c87d3340

View file

@ -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') {