parent
d796cfec6d
commit
3df0a5b8e6
3 changed files with 4 additions and 3 deletions
2
Jenkins/BETA-phabricator-windows/Jenkinsfile
vendored
2
Jenkins/BETA-phabricator-windows/Jenkinsfile
vendored
|
@ -32,7 +32,7 @@ pipeline {
|
||||||
PHABRICATOR_HOST = 'https://reviews.llvm.org'
|
PHABRICATOR_HOST = 'https://reviews.llvm.org'
|
||||||
PHAB_LOG = "${WORKSPACE}/build/.phabricator-comment"
|
PHAB_LOG = "${WORKSPACE}/build/.phabricator-comment"
|
||||||
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
|
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
|
||||||
RESULT_URL = "https://storage.cloud.google.com/llvm-premerge-checks/results/${MY_BUILD_ID}"
|
RESULT_URL = "https://storage.googleapis.com/llvm-premerge-checks/results/${MY_BUILD_ID}"
|
||||||
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
||||||
// store all build results here, will be uploaded to GCS later
|
// store all build results here, will be uploaded to GCS later
|
||||||
RESULT_DIR = "${WORKSPACE}\\results"
|
RESULT_DIR = "${WORKSPACE}\\results"
|
||||||
|
|
3
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
3
Jenkins/master-windows-pipeline/Jenkinsfile
vendored
|
@ -39,6 +39,7 @@ pipeline {
|
||||||
LLVM_DIR = "${WORKSPACE}\\llvm-project"
|
LLVM_DIR = "${WORKSPACE}\\llvm-project"
|
||||||
// enable sccache for this build. Comment out the line to disable it
|
// enable sccache for this build. Comment out the line to disable it
|
||||||
SCCACHE_DIR = "C:\\ws\\sccache"
|
SCCACHE_DIR = "C:\\ws\\sccache"
|
||||||
|
RESULT_URL = "https://storage.googleapis.com/llvm-premerge-checks/results/${MY_BUILD_ID}"
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
@ -81,7 +82,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
echo "Logs uploaded to https://pantheon.corp.google.com/storage/browser/llvm-premerge-checks/results/${MY_BUILD_ID}."
|
echo "Logs uploaded to ${RESUlT_URL}"
|
||||||
dir("${env.RESULT_DIR}") {
|
dir("${env.RESULT_DIR}") {
|
||||||
// gather all result files in a folder, then upload everything to
|
// gather all result files in a folder, then upload everything to
|
||||||
// Google Cloud Storage
|
// Google Cloud Storage
|
||||||
|
|
2
Jenkins/phabricator-windows/Jenkinsfile
vendored
2
Jenkins/phabricator-windows/Jenkinsfile
vendored
|
@ -32,7 +32,7 @@ pipeline {
|
||||||
PHABRICATOR_HOST = 'https://reviews.llvm.org'
|
PHABRICATOR_HOST = 'https://reviews.llvm.org'
|
||||||
PHAB_LOG = "${WORKSPACE}/build/.phabricator-comment"
|
PHAB_LOG = "${WORKSPACE}/build/.phabricator-comment"
|
||||||
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
|
MY_BUILD_ID = "${JOB_BASE_NAME}-${BUILD_NUMBER}"
|
||||||
RESULT_URL = "https://storage.cloud.google.com/llvm-premerge-checks/results/${MY_BUILD_ID}"
|
RESULT_URL = "https://storage.googleapis.com/llvm-premerge-checks/results/${MY_BUILD_ID}"
|
||||||
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
SCRIPT_DIR = "${WORKSPACE}/llvm-premerge-checks/scripts"
|
||||||
// store all build results here, will be uploaded to GCS later
|
// store all build results here, will be uploaded to GCS later
|
||||||
RESULT_DIR = "${WORKSPACE}\\results"
|
RESULT_DIR = "${WORKSPACE}\\results"
|
||||||
|
|
Loading…
Reference in a new issue