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-10-14 19:51:03 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-10-14 19:54:25 +0300
commit7de84059b921502f13dec14be240f849d7bf5a63 (patch)
tree144000efa2c3708e86a5e056bbd95cfecb43916e /scripts/ci
parente7b199377c1876c308b8420230b5ea74bf7a2aa9 (diff)
[ci] Fix ios versions in Mono SDKs and fix typo
Diffstat (limited to 'scripts/ci')
-rwxr-xr-xscripts/ci/run-jenkins.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh
index caca159c8d9..b8549a02ae5 100755
--- a/scripts/ci/run-jenkins.sh
+++ b/scripts/ci/run-jenkins.sh
@@ -178,14 +178,14 @@ if [[ ${CI_TAGS} == *'sdks-ios'* ]];
if [[ ${CI_TAGS} == *'xcode112b2'* ]]; then
export XCODE_DIR=/Applications/Xcode112b2.app/Contents/Developer
export MACOS_VERSION=10.15
- export IOS_VERSION=13.0
- export TVOS_VERSION=13.0
- export WATCHOS_VERSION=6.0
- export WATCHOS64_32_VERSION=6.0
- if [[ ${CI_TAGS} == *'xcode111'* ]]; then
+ export IOS_VERSION=13.2
+ export TVOS_VERSION=13.2
+ export WATCHOS_VERSION=6.1
+ export WATCHOS64_32_VERSION=6.1
+ elif [[ ${CI_TAGS} == *'xcode111'* ]]; then
export XCODE_DIR=/Applications/Xcode111.app/Contents/Developer
export MACOS_VERSION=10.15
- export IOS_VERSION=13.0
+ export IOS_VERSION=13.1
export TVOS_VERSION=13.0
export WATCHOS_VERSION=6.0
export WATCHOS64_32_VERSION=6.0
@@ -243,7 +243,7 @@ then
if [[ ${CI_TAGS} == *'xcode112b2'* ]]; then
export XCODE_DIR=/Applications/Xcode112b2.app/Contents/Developer
export MACOS_VERSION=10.15
- if [[ ${CI_TAGS} == *'xcode111'* ]]; then
+ elif [[ ${CI_TAGS} == *'xcode111'* ]]; then
export XCODE_DIR=/Applications/Xcode111.app/Contents/Developer
export MACOS_VERSION=10.15
else