From b402dc9c62b93aa599f6924626996beb5b95852c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 13 Jan 2020 23:27:54 +0100 Subject: [PATCH] upgrade XCode to 11.3.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 03f25a0760..4eb99098fe 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -1,5 +1,5 @@ pipeline { - agent { label 'macos-xcode-11.2.1' } + agent { label 'macos-xcode-11.3.1' } parameters { string( diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 886d45e607..c52921bafd 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -1,5 +1,5 @@ pipeline { - agent { label 'macos-xcode-11.2.1' } + agent { label 'macos-xcode-11.3.1' } parameters { string( diff --git a/nix/mobile/default.nix b/nix/mobile/default.nix index 6ef6174926..41ab3d6574 100644 --- a/nix/mobile/default.nix +++ b/nix/mobile/default.nix @@ -5,7 +5,7 @@ let inherit (lib) catAttrs concatStrings optional unique; xcodewrapperArgs = { - version = "11.2.1"; + version = "11.3.1"; }; xcodeWrapper = composeXcodeWrapper xcodewrapperArgs; fastlane = callPackage ./fastlane { };