Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion MOBILE/ios/check-xcode-version
Original file line number Diff line number Diff line change
Expand Up @@ -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 || {
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/ghgen/ios.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading