diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 5a5809fd6c..ea1ca122ea 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -31,7 +31,7 @@ jobs: # ./internal/cmd/buildtool needs coreutils for sha256 plus GNU build tools - run: brew install autoconf automake coreutils libtool - - run: make EXPECTED_XCODE_VERSION=15.2 ios + - run: make EXPECTED_XCODE_VERSION=15.4 ios - uses: actions/upload-artifact@v4 with: diff --git a/MOBILE/ios/check-xcode-version b/MOBILE/ios/check-xcode-version index 76f62a4f08..0801955bb5 100755 --- a/MOBILE/ios/check-xcode-version +++ b/MOBILE/ios/check-xcode-version @@ -2,7 +2,7 @@ set -euo pipefail -EXPECTED_XCODE_VERSION=${EXPECTED_XCODE_VERSION:-15.1} +EXPECTED_XCODE_VERSION=${EXPECTED_XCODE_VERSION:-15.4} printf "checking for xcodebuild... " command -v xcodebuild || { diff --git a/internal/cmd/ghgen/ios.go b/internal/cmd/ghgen/ios.go index 31bb4fc387..777d1d0650 100644 --- a/internal/cmd/ghgen/ios.go +++ b/internal/cmd/ghgen/ios.go @@ -34,7 +34,7 @@ func buildAndPublishMobileIOS(w io.Writer, job *Job) { newStepCheckout(w) newStepSetupGo(w, "ios") iosNewStepBrewInstall(w) - newStepMake(w, "EXPECTED_XCODE_VERSION=14.2 ios") + newStepMake(w, "EXPECTED_XCODE_VERSION=15.4 ios") newStepUploadArtifacts(w, artifacts) newJob(w, publishJob, runsOnUbuntu, buildJob, contentsWritePermissions)