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 Mar 27, 2024
1 parent f815649 commit 6784b01
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 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 All @@ -54,7 +54,7 @@ jobs:
android:
executor:
name: android/android-machine
tag: 2022.04.1
tag: default
working_directory: /home/circleci
environment:
HERMES_WS_DIR: /home/circleci
Expand Down Expand Up @@ -169,6 +169,7 @@ jobs:
name: Install dependencies
command: |
brew install cmake ninja
brew upgrade cmake
- run:
name: Build the test application
command: |
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 Down Expand Up @@ -217,6 +218,7 @@ jobs:
name: Install dependencies
command: |
brew install cmake ninja
brew upgrade cmake
sudo gem install cocoapods
- run:
name: Build the iOS frameworks
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 @@ -246,6 +250,7 @@ jobs:
name: Install dependencies
command: |
brew install cmake ninja
brew upgrade cmake
sudo gem install cocoapods
- run:
name: Package the framework
Expand Down Expand Up @@ -274,14 +279,15 @@ jobs:

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

test-macos:
macos:
xcode: 13.4.1
xcode: 15.3
steps:
- checkout:
path: hermes
- run:
name: Install dependencies
command: |
brew install cmake
brew upgrade cmake
- run:
name: Run MacOS regression tests in debug mode
command: |
Expand Down Expand Up @@ -625,7 +632,7 @@ jobs:
test-e2e:
executor:
name: android/android-machine
tag: 2023.06.1
tag: default
working_directory: /home/circleci
environment:
REACT_NATIVE_OVERRIDE_HERMES_DIR: /home/circleci/hermes
Expand Down Expand Up @@ -659,7 +666,7 @@ jobs:
test-e2e-intl:
executor:
name: android/android-machine
tag: 2022.04.1
tag: default
working_directory: /home/circleci
environment:
HERMES_WS_DIR: /home/circleci
Expand Down Expand Up @@ -689,14 +696,15 @@ jobs:

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

0 comments on commit 6784b01

Please sign in to comment.