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-11-02 14:05:46 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-11-04 17:27:42 +0300
commit49d5c4d14d1d7f302c5d1f03c27dc96e6bfb37e3 (patch)
tree00778140996f198f1c7d0ce27ddfbe0da2f8c5a7 /scripts/ci
parent6630bcc67f904b257c90c4feec507a7a93a6b246 (diff)
[sdks] Use Xcode 11.2 stable version for iOS/Mac SDKs
As requested by the xamarin-macios team.
Diffstat (limited to 'scripts/ci')
-rw-r--r--scripts/ci/pipeline/sdks-archive.groovy12
-rwxr-xr-xscripts/ci/run-jenkins.sh8
2 files changed, 10 insertions, 10 deletions
diff --git a/scripts/ci/pipeline/sdks-archive.groovy b/scripts/ci/pipeline/sdks-archive.groovy
index 2f0abcac4f7..72bb5d31001 100644
--- a/scripts/ci/pipeline/sdks-archive.groovy
+++ b/scripts/ci/pipeline/sdks-archive.groovy
@@ -50,17 +50,17 @@ parallel (
}
}
},
- "iOS (Xcode 11.1)": {
+ "iOS (Xcode 11.2)": {
throttle(['provisions-ios-toolchain']) {
- node ("xcode111") {
- archive ("ios", "release", "Darwin", "", "", "", "xcode111")
+ node ("xcode112") {
+ archive ("ios", "release", "Darwin", "", "", "", "xcode112")
}
}
},
- "Mac (Xcode 11.1)": {
+ "Mac (Xcode 11.2)": {
throttle(['provisions-mac-toolchain']) {
- node ("xcode111") {
- archive ("mac", "release", "Darwin", "", "", "", "xcode111")
+ node ("xcode112") {
+ archive ("mac", "release", "Darwin", "", "", "", "xcode112")
}
}
},
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index a45968cb626..d1d3d0e7932 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -175,8 +175,8 @@ fi
if [[ ${CI_TAGS} == *'sdks-ios'* ]];
then
# configuration on our bots
- if [[ ${CI_TAGS} == *'xcode112b2'* ]]; then
- export XCODE_DIR=/Applications/Xcode112b2.app/Contents/Developer
+ if [[ ${CI_TAGS} == *'xcode112'* ]]; then
+ export XCODE_DIR=/Applications/Xcode112.app/Contents/Developer
export MACOS_VERSION=10.15
export IOS_VERSION=13.2
export TVOS_VERSION=13.2
@@ -244,8 +244,8 @@ fi
if [[ ${CI_TAGS} == *'sdks-mac'* ]];
then
# configuration on our bots
- if [[ ${CI_TAGS} == *'xcode112b2'* ]]; then
- export XCODE_DIR=/Applications/Xcode112b2.app/Contents/Developer
+ if [[ ${CI_TAGS} == *'xcode112'* ]]; then
+ export XCODE_DIR=/Applications/Xcode112.app/Contents/Developer
export MACOS_VERSION=10.15
elif [[ ${CI_TAGS} == *'xcode111'* ]]; then
export XCODE_DIR=/Applications/Xcode111.app/Contents/Developer