From 035e07f7bee845f3cf933b809d150ab39c6efb77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 15 Apr 2020 20:15:00 +0200 Subject: [PATCH] upgrade to Xcode 11.4 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 190df92798..3696231897 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -1,7 +1,7 @@ library 'status-react-jenkins@master' pipeline { - agent { label 'macos-xcode-11.3.1' } + agent { label 'macos-xcode-11.4' } parameters { string( diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index b5160b73b1..808309418d 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -1,7 +1,7 @@ library 'status-react-jenkins@master' pipeline { - agent { label 'macos-xcode-11.3.1' } + agent { label 'macos-xcode-11.4' } parameters { string( diff --git a/nix/mobile/default.nix b/nix/mobile/default.nix index 41ab3d6574..3ed62dcf1e 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.3.1"; + version = "11.4"; }; xcodeWrapper = composeXcodeWrapper xcodewrapperArgs; fastlane = callPackage ./fastlane { };