Skip to content

Commit 21c8837

Browse files
hramosfacebook-github-bot
authored andcommitted
Bump Circle CI macOS container to Xcode 14.0.1, Ruby to 2.7.6, CocoaPods 1.11.3 (#34884)
Summary: Pull Request resolved: #34884 Xcode 14 is now stable. Updating CI to use latest Xcode command line tools. The Circle CI 14.0.1 container ships with Ruby 2.7.6 and CocoaPods 1.11.3, see full manifest here: https://circle-macos-docs.s3.amazonaws.com/image-manifest/v8824/index.html Changelog: [iOS][Changed] Bump to Ruby 2.7.6 and CocoaPods 1.11.3 Reviewed By: mdvacca Differential Revision: D40148796 fbshipit-source-id: b1eab68e159ec3237ff2ef596163b73fc1e511e4
1 parent fd4451e commit 21c8837

File tree

11 files changed

+11
-8
lines changed

11 files changed

+11
-8
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ references:
3636
# Dependency Anchors
3737
# -------------------------
3838
dependency_versions:
39-
xcode_version: &xcode_version "13.3.1"
39+
xcode_version: &xcode_version "14.0.1"
4040
nodelts_image: &nodelts_image "cimg/node:16.14"
4141
nodeprevlts_image: &nodeprevlts_image "cimg/node:14.19"
4242

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.5
1+
2.7.6

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.5'
4+
ruby '2.7.6'
55

6-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
6+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'

packages/rn-tester/RNTesterIntegrationTests/RNTesterSnapshotTests.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ - (void)setUp
2424
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 10) {
2525
_runner.testSuffix = [NSString stringWithFormat:@"-iOS%d", UIDevice.currentDevice.systemVersion.intValue];
2626
}
27+
28+
// To update snapshots, set recordMode to YES and re-run RNTesterSnapshotTests.
29+
// Do not forget to set back to NO before committing your changes.
2730
_runner.recordMode = NO;
2831
}
2932

313 KB
Loading
361 KB
Loading
562 KB
Loading
440 KB
Loading

scripts/.tests.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export ANDROID_DISABLE_AVD_TESTS=1
2525

2626
## IOS ##
2727
export IOS_TARGET_OS="latest"
28-
export IOS_DEVICE="iPhone 8"
28+
export IOS_DEVICE="iPhone 14"
2929
export SDK_IOS="iphonesimulator"
3030

3131
## CI OVERRIDES ##

template/Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

33
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4-
ruby '2.7.5'
4+
ruby '2.7.6'
55

6-
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
6+
gem 'cocoapods', '~> 1.11', '>= 1.11.3'

0 commit comments

Comments
 (0)