From 72dfb5189e66a361b1eab3b114746dcddb7902ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 4 Dec 2019 13:07:11 +0100 Subject: [PATCH] upgrade Xcode: 11.1 > 11.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.ios | 2 +- ci/Jenkinsfile.macos | 2 +- nix/mobile/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/Jenkinsfile.ios b/ci/Jenkinsfile.ios index 23f2c79440..11b3b02ef3 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -1,5 +1,5 @@ pipeline { - agent { label 'macos-xcode-11.1' } + agent { label 'macos-xcode-11.2.1' } parameters { string( diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 7f5710b419..22dbd24e98 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -1,5 +1,5 @@ pipeline { - agent { label 'macos-xcode-11.1' } + agent { label 'macos-xcode-11.2.1' } parameters { string( diff --git a/nix/mobile/default.nix b/nix/mobile/default.nix index faaa4bd55f..b105c50172 100644 --- a/nix/mobile/default.nix +++ b/nix/mobile/default.nix @@ -6,7 +6,7 @@ let platform = callPackage ../platform.nix { inherit target-os; }; xcodewrapperArgs = { - version = "11.1"; + version = "11.2.1"; }; xcodeWrapper = composeXcodeWrapper xcodewrapperArgs; androidPlatform = callPackage ./android { inherit config target-os mkShell mkFilter nodejs maven localMavenRepoBuilder projectNodePackage jsbundle; status-go = status-go.android; };