1
0
Fork 0

fixed paths

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

View file

@ -24,7 +24,6 @@ pipeline {
options { timestamps () }
environment {
BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
TARGET_DIR = "/mnt/nfs/results/${BUILD_ID}"
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
RESULT_DIR = "C:\\results\\${BUILD_ID}"
}
@ -38,8 +37,7 @@ pipeline {
}
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}'
powershell "New-Item -ItemType Directory -Force -Path ${RESULT_DIR}"
}
}
stage('CMake') {