diff --git a/_assets/ci/Jenkinsfile.ios b/_assets/ci/Jenkinsfile.ios index d740b2d03..24adad771 100644 --- a/_assets/ci/Jenkinsfile.ios +++ b/_assets/ci/Jenkinsfile.ios @@ -1,7 +1,7 @@ library 'status-jenkins-lib@v1.7.0' pipeline { - agent { label 'macos && aarch64 && nix-2.11' } + agent { label 'macos && aarch64 && xcode-14.3 && nix-2.11' } parameters { string( @@ -47,7 +47,7 @@ pipeline { stage('Compile') { steps { script { - nix.shell('make statusgo-ios', pure: false) + nix.shell('make statusgo-ios', pure: false, sandbox: false) } } } diff --git a/shell.nix b/shell.nix index 23e58bcfb..047dbcad8 100644 --- a/shell.nix +++ b/shell.nix @@ -35,7 +35,7 @@ let /* No Android SDK for Darwin aarch64. */ isMacM1 = stdenv.isDarwin && stdenv.isAarch64; /* Lock requires Xcode verison. */ - xcodeWrapper = pkgs.xcodeenv.composeXcodeWrapper { version = "14.2"; }; + xcodeWrapper = pkgs.xcodeenv.composeXcodeWrapper { version = "14.3"; }; /* Gomobile also needs the Xcode wrapper. */ gomobileMod = pkgs.gomobile.override { inherit xcodeWrapper;