From c943f5f283a4c0f23c3015f4b9549e907e469dc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 26 Jun 2020 21:20:46 +0200 Subject: [PATCH] nix: upgrade xcode 11.4.1 to 11.5 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/overlay.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/Jenkinsfile.ios b/ci/Jenkinsfile.ios index 901275ac1d..7e053a23f9 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -1,7 +1,7 @@ library 'status-react-jenkins@v1.1.7' pipeline { - agent { label 'macos-xcode-11.4.1' } + agent { label 'macos-xcode-11.5' } parameters { string( diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 8e649ffcb7..f7a305ebe4 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -1,7 +1,7 @@ library 'status-react-jenkins@v1.1.7' pipeline { - agent { label 'macos-xcode-11.4.1' } + agent { label 'macos-xcode-11.5' } parameters { string( diff --git a/nix/overlay.nix b/nix/overlay.nix index a0f925ed5f..3a1f61ad3c 100644 --- a/nix/overlay.nix +++ b/nix/overlay.nix @@ -32,7 +32,7 @@ in { gradlePropParser = callPackage ./tools/gradlePropParser.nix { }; # Package version adjustments - xcodeWrapper = super.xcodeenv.composeXcodeWrapper { version = "11.4.1"; }; + xcodeWrapper = super.xcodeenv.composeXcodeWrapper { version = "11.5"; }; openjdk = super.pkgs.openjdk8_headless; nodejs = super.pkgs.nodejs-12_x;