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-02 14:05:46 +0300
commit4b89bbac7289d612b3b04f8ed009efcc8c272a4f (patch)
treedaa025ad811c7c850a4aac913292eec4ffb1a771
parent3775d5ac0adcbd3c40ecc65286e1c4a1ad1b5965 (diff)
[sdks] Use Xcode 11.2 stable version2019-06-xcode11.2
-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 28ed3a907f9..a2593f3c3e8 100644
--- a/scripts/ci/pipeline/sdks-archive.groovy
+++ b/scripts/ci/pipeline/sdks-archive.groovy
@@ -57,17 +57,17 @@ parallel (
}
},
*/
- "iOS (Xcode 11.2 beta2)": {
+ "iOS (Xcode 11.2)": {
throttle(['provisions-ios-toolchain']) {
- node ("xcode112b2") {
- archive ("ios", "release", "Darwin", "", "", "", "xcode112b2")
+ node ("xcode112") {
+ archive ("ios", "release", "Darwin", "", "", "", "xcode112")
}
}
},
- "Mac (Xcode 11.2 beta2)": {
+ "Mac (Xcode 11.2)": {
throttle(['provisions-mac-toolchain']) {
- node ("xcode112b2") {
- archive ("mac", "release", "Darwin", "", "", "", "xcode112b2")
+ node ("xcode112") {
+ archive ("mac", "release", "Darwin", "", "", "", "xcode112")
}
}
},
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index 0afa8c9922c..bbb46f700e7 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -133,8 +133,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
@@ -205,8 +205,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} == *'xcode11'* ]]; then
export XCODE_DIR=/Applications/Xcode11.app/Contents/Developer