Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Xcode version #1420

Closed
wants to merge 1 commit into from
Closed
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
28 changes: 15 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ jobs:
macos:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1.6.0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 13.4.1
xcode-version: 15.4
- uses: actions/[email protected]
with:
path: hermes
Expand Down Expand Up @@ -115,9 +115,9 @@ jobs:
HERMES_WS_DIR: "/tmp/hermes"
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: maxim-lobanov/setup-xcode@v1.6.0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 13.4.1
xcode-version: 15.4
- uses: actions/[email protected]
- name: Cache setup
uses: actions/[email protected]
Expand All @@ -142,9 +142,9 @@ jobs:
test-macos:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1.6.0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 13.4.1
xcode-version: 15.4
- uses: actions/[email protected]
with:
path: hermes
Expand All @@ -163,9 +163,9 @@ jobs:
HERMES_WS_DIR: "/tmp/hermes"
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: maxim-lobanov/setup-xcode@v1.6.0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 13.4.1
xcode-version: 15.4
- uses: actions/[email protected]
- name: Cache setup
uses: actions/[email protected]
Expand All @@ -192,10 +192,12 @@ jobs:
working-directory: test/ApplePlatformsIntegrationTestApp
- name: Test iPhone application
run: |-
# Xcode 15 uses iOS 17 for simulator, and only iPhone 14/15 can work by
# default, so use the oldest working model here.
xcodebuild test \
-workspace ApplePlatformsIntegrationTests.xcworkspace \
-configuration Debug \
-destination 'platform=iOS Simulator,name=iPhone 11' \
-destination 'platform=iOS Simulator,name=iPhone 14' \
-scheme ApplePlatformsIntegrationMobileTests
working-directory: test/ApplePlatformsIntegrationTestApp
package-apple-runtime:
Expand All @@ -208,9 +210,9 @@ jobs:
HERMES_WS_DIR: "/tmp/hermes"
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- uses: maxim-lobanov/setup-xcode@v1.6.0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 13.4.1
xcode-version: 15.4
- uses: actions/[email protected]
- name: Cache setup
uses: actions/[email protected]
Expand Down Expand Up @@ -550,9 +552,9 @@ jobs:
test-macos-test262:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1.6.0
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 13.4.1
xcode-version: 15.4
- uses: actions/[email protected]
with:
path: hermes
Expand Down
Loading