Skip to content

Commit

Permalink
[sdks] Use Xcode 11.2 stable version for iOS/Mac SDKs
Browse files Browse the repository at this point in the history
As requested by the xamarin-macios team.
  • Loading branch information
akoeplinger committed Nov 4, 2019
1 parent e1ef774 commit 062f0ab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 24 deletions.
26 changes: 6 additions & 20 deletions scripts/ci/pipeline/sdks-archive.groovy
Expand Up @@ -50,31 +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")
}
}
},
"iOS (Xcode 11.2 beta2)": {
throttle(['provisions-ios-toolchain']) {
node ("xcode112b2") {
archive ("ios", "release", "Darwin", "", "", "", "xcode112b2")
}
}
},
"Mac (Xcode 11.2 beta2)": {
throttle(['provisions-mac-toolchain']) {
node ("xcode112b2") {
archive ("mac", "release", "Darwin", "", "", "", "xcode112b2")
node ("xcode112") {
archive ("mac", "release", "Darwin", "", "", "", "xcode112")
}
}
},
Expand Down
8 changes: 4 additions & 4 deletions scripts/ci/run-jenkins.sh
Expand Up @@ -170,8 +170,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
Expand Down Expand Up @@ -240,8 +240,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
Expand Down

0 comments on commit 062f0ab

Please sign in to comment.