added env variable for result storage
This commit is contained in:
parent
8fcc871833
commit
819dac1b36
1 changed files with 3 additions and 2 deletions
5
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
5
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -23,9 +23,10 @@ pipeline {
|
|||
// enable timestaps for getting execution times
|
||||
options { timestamps () }
|
||||
environment {
|
||||
BUILD_ID="${JOB_BASE_NAME}-${BUILD_NUMBER}"
|
||||
TARGET_DIR="/mnt/nfs/results/${BUILD_ID}"
|
||||
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}"
|
||||
}
|
||||
stages {
|
||||
stage("git checkout"){
|
||||
|
|
Loading…
Reference in a new issue