diff --git a/ci/Jenkinsfile.ios b/ci/Jenkinsfile.ios index 9a5d370ac9..9d60461791 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -5,7 +5,7 @@ library 'status-jenkins-lib@v1.8.4' def isPRBuild = utils.isPRBuild() pipeline { - agent { label 'macos && arm64 && nix-2.14 && xcode-14.3' } + agent { label 'macos && arm64 && nix-2.14 && xcode-15.1' } parameters { string( diff --git a/nix/overlay.nix b/nix/overlay.nix index 0e29af262b..c6d581dca4 100644 --- a/nix/overlay.nix +++ b/nix/overlay.nix @@ -69,7 +69,7 @@ in { yarn = super.yarn.override { nodejs = super.nodejs-18_x; }; openjdk = super.openjdk11_headless; xcodeWrapper = super.xcodeenv.composeXcodeWrapper { - version = "14.0"; + version = "15.0"; allowHigher = true; }; go = super.go_1_19; diff --git a/nix/status-go/mobile/default.nix b/nix/status-go/mobile/default.nix index c18938d0b3..b3efe61367 100644 --- a/nix/status-go/mobile/default.nix +++ b/nix/status-go/mobile/default.nix @@ -19,7 +19,7 @@ ios = {targets ? [ "ios/arm64" "iossimulator/amd64"]}: callPackage ./build.nix { platform = "ios"; - platformVersion = "8.0"; + platformVersion = "11.0"; outputFileName = "Statusgo.xcframework"; inherit meta source goBuildLdFlags targets; };