Skip to content

Commit

Permalink
ci: update to Xcode 15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski committed Apr 2, 2024
1 parent d3245de commit ca1640d
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ workflows:
# Default settings for Apple jobs (apple-runtime, test-apple-runtime)
apple_defaults: &apple_defaults
macos:
xcode: 15.2
xcode: 15.3
resource_class: macos.m1.medium.gen1
working_directory: ~/hermes
environment:
Expand Down Expand Up @@ -168,11 +168,12 @@ jobs:
- run:
name: Install dependencies
command: |
brew update
brew install cmake ninja
- run:
name: Build the test application
command: |
pod install
pod install --verbose
working_directory: test/ApplePlatformsIntegrationTestApp
- run:
name: Test MacOS application
Expand All @@ -189,7 +190,7 @@ jobs:
xcodebuild test \
-workspace ApplePlatformsIntegrationTests.xcworkspace \
-configuration Debug \
-destination 'platform=iOS Simulator,name=iPhone 11' \
-destination 'platform=iOS Simulator,name=iPhone 15' \
-scheme ApplePlatformsIntegrationMobileTests
working_directory: test/ApplePlatformsIntegrationTestApp
- run:
Expand All @@ -216,6 +217,7 @@ jobs:
- run:
name: Install dependencies
command: |
brew update
brew install cmake ninja
sudo gem install cocoapods
- run:
Expand All @@ -231,6 +233,8 @@ jobs:
- ~/hermes/build_catalyst
- ~/hermes/build_iphonesimulator
- ~/hermes/build_macosx
- ~/hermes/build_xros
- ~/hermes/build_xrsimulator
- ~/hermes/destroot

package-apple-runtime:
Expand All @@ -245,6 +249,7 @@ jobs:
- run:
name: Install dependencies
command: |
brew update
brew install cmake ninja
sudo gem install cocoapods
- run:
Expand Down Expand Up @@ -274,13 +279,14 @@ jobs:

macos:
macos:
xcode: 13.4.1
xcode: 15.3
steps:
- checkout:
path: hermes
- run:
name: Install dependencies
command: |
brew update
brew install cmake ninja
- run:
name: Build macOS CLI
Expand Down Expand Up @@ -312,13 +318,14 @@ jobs:

test-macos:
macos:
xcode: 13.4.1
xcode: 15.3
steps:
- checkout:
path: hermes
- run:
name: Install dependencies
command: |
brew update
brew install cmake
- run:
name: Run MacOS regression tests in debug mode
Expand Down Expand Up @@ -689,13 +696,14 @@ jobs:

test-macos-test262:
macos:
xcode: 13.4.1
xcode: 15.3
steps:
- checkout:
path: hermes
- run:
name: Setup dependencies
command: |
brew update
brew install cmake ninja
# Check out test262 at a pinned revision to reduce flakiness
git clone https://github.com/tc39/test262
Expand Down

0 comments on commit ca1640d

Please sign in to comment.