Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-02-26 13:19:43 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-02-26 13:21:29 +0300
commit68aad3b0eb786441eebac21e0330bd9bac2c10db (patch)
treef6eae13bd7ffd72961394493c714933302ed41d9
parent5dd1c19b53dd43ba55b6ea649dc3809b0ae4f057 (diff)
[ci] Use dl.internalx.com when building on private Jenkinsmono-5.18.0.268
(cherry picked from commit 9d4aa950aac64d0b673b107bd99fa784a00e3b1d)
-rw-r--r--scripts/ci/pipeline/osx-package.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci/pipeline/osx-package.groovy b/scripts/ci/pipeline/osx-package.groovy
index c3b398221a1..644fc826c3f 100644
--- a/scripts/ci/pipeline/osx-package.groovy
+++ b/scripts/ci/pipeline/osx-package.groovy
@@ -73,8 +73,8 @@ node ("mono-package") {
echo "Not a release job, skipping signing."
}
- def storageAccount = (isPrivate ? "bosstoragemirror.blob.core.windows.net" : "xamjenkinsartifact.azureedge.net")
- def packageUrl = "https://${storageAccount}/${jobName}/${monoBranch}/${env.BUILD_NUMBER}/${commitHash}"
+ def downloadHost = (isPrivate ? "dl.internalx.com" : "xamjenkinsartifact.azureedge.net")
+ def packageUrl = "https://${downloadHost}/${jobName}/${monoBranch}/${env.BUILD_NUMBER}/${commitHash}"
currentBuild.description = "<hr/><h2>DOWNLOAD: <a href=\"${packageUrl}/${packageFileName}\">${packageFileName}</a></h2><hr/>"
if (isReleaseJob) { utils.reportGitHubStatus (isPr ? env.ghprbActualCommit : commitHash, 'artifacts.json', "${packageUrl}/artifacts.json", 'SUCCESS', '') }