diff --git a/.ado/ado-test-cleanup.sh b/.ado/ado-test-cleanup.sh index d58c56aea87b2c..683194dcc50b25 100755 --- a/.ado/ado-test-cleanup.sh +++ b/.ado/ado-test-cleanup.sh @@ -2,7 +2,7 @@ set -ex # Script used by the Azure DevOps build agent to cleanup the packager and web socket server -# after the XCode test step has completed +# after the Xcode test step has completed # kill whatever is occupying port 8081 (packager) lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill diff --git a/.ado/apple-pr.yml b/.ado/apple-pr.yml index 6514e5219e2646..10498a87aa98b2 100644 --- a/.ado/apple-pr.yml +++ b/.ado/apple-pr.yml @@ -31,6 +31,8 @@ jobs: - template: templates/apple-job-javascript.yml parameters: apply_office_patches: $(apply_office_patches) + slice_name: $(slice_name) + xcode_version: $(xcode_version) - job: AppleRNPR displayName: Apple React Native PR @@ -84,6 +86,8 @@ jobs: xcode_actions_release: $(xcode_actions_release) xcode_destination: $(xcode_destination) apply_office_patches: $(apply_office_patches) + slice_name: $(slice_name) + xcode_version: $(xcode_version) - job: CliInit displayName: Verify react-native-macos-init diff --git a/.ado/templates/apple-job-javascript.yml b/.ado/templates/apple-job-javascript.yml index fba8fe60c44875..ccdf9a3ce1f2c8 100644 --- a/.ado/templates/apple-job-javascript.yml +++ b/.ado/templates/apple-job-javascript.yml @@ -1,10 +1,16 @@ parameters: apply_office_patches: '' + slice_name: '' + xcode_version: '' steps: - template: apple-node-setup.yml + # Task Group: Xcode select proper version - template: apple-xcode-select.yml + parameters: + slice_name: ${{ parameters.slice_name }} + xcode_version: ${{ parameters.xcode_version }} - template: apple-droid-node-patching.yml parameters: diff --git a/.ado/templates/apple-job-react-native.yml b/.ado/templates/apple-job-react-native.yml index f39d588e6f05e1..c74069067a08e4 100644 --- a/.ado/templates/apple-job-react-native.yml +++ b/.ado/templates/apple-job-react-native.yml @@ -7,6 +7,8 @@ parameters: xcode_actions_release: '' xcode_destination: '' apply_office_patches: '' + slice_name: '' + xcode_version: '' steps: # Clean DerivedData @@ -18,6 +20,9 @@ steps: # Task Group: Xcode select proper version - template: apple-xcode-select.yml + parameters: + slice_name: ${{ parameters.slice_name }} + xcode_version: ${{ parameters.xcode_version }} - template: apple-droid-node-patching.yml parameters: diff --git a/.ado/templates/apple-xcode-build.yml b/.ado/templates/apple-xcode-build.yml index cd6437c749325f..c0ee51376ba7cf 100644 --- a/.ado/templates/apple-xcode-build.yml +++ b/.ado/templates/apple-xcode-build.yml @@ -10,7 +10,7 @@ parameters: steps: - task: Xcode@5 - displayName: 'XCode ${{ parameters.xcode_actions }} ${{ parameters.xcode_configuration }} ${{ parameters.xcode_sdk }} ${{ parameters.xcode_scheme }}' + displayName: 'Xcode ${{ parameters.xcode_actions }} ${{ parameters.xcode_configuration }} ${{ parameters.xcode_sdk }} ${{ parameters.xcode_scheme }}' inputs: actions: '${{ parameters.xcode_actions }}' configuration: ${{ parameters.xcode_configuration }} @@ -21,7 +21,7 @@ steps: signingOption: auto packageApp: false teamId: '$(XCodeSigningMicrosoftTeamID)' - args: '-destination "${{ parameters.xcode_destination }}" ONLY_ACTIVE_ARCH=NO -verbose -UseModernBuildSystem=NO -derivedDataPath DerivedData ${{ parameters.xcode_extraArgs }}' + args: '-destination "${{ parameters.xcode_destination }}" ONLY_ACTIVE_ARCH=YES -verbose -derivedDataPath DerivedData ${{ parameters.xcode_extraArgs }}' exportPath: '$(agent.builddirectory)/output/${{ parameters.xcode_sdk }}/${{ parameters.xcode_configuration }}' useXcpretty: ${{ parameters.xcode_useXcpretty }} publishJUnitResults: ${{ parameters.xcode_useXcpretty }} diff --git a/.ado/templates/apple-xcode-select.yml b/.ado/templates/apple-xcode-select.yml index 5451b1ad0db3bc..09ed6cd29f5c3c 100644 --- a/.ado/templates/apple-xcode-select.yml +++ b/.ado/templates/apple-xcode-select.yml @@ -1,8 +1,13 @@ # -# Task Group: XCode select proper version +# Task Group: Xcode select proper version # + +parameters: + slice_name: '' + xcode_version: '' + steps: - bash: | - sudo xcode-select --switch '/Applications/Xcode_11.2.1.app' - displayName: 'Switch to XCode 11.2.1' + sudo xcode-select --switch '${{ parameters.xcode_version }}' + displayName: Switch Xcode version ${{ parameters.slice_name }} failOnStderr: true diff --git a/.ado/variables/mac.yml b/.ado/variables/mac.yml index f81f780ec1b166..f19c8aff920309 100644 --- a/.ado/variables/mac.yml +++ b/.ado/variables/mac.yml @@ -1,2 +1,4 @@ variables: - VmImage: macOS-10.14 + VmImage: macOS-10.15 + slice_name: 'Xcode_12_4' + xcode_version: '/Applications/Xcode_12.4.app' \ No newline at end of file diff --git a/Libraries/ART/React-ART.podspec b/Libraries/ART/React-ART.podspec index e04351c9dca68a..7f33d56724fba9 100644 --- a/Libraries/ART/React-ART.podspec +++ b/Libraries/ART/React-ART.podspec @@ -23,7 +23,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "**/*.{m}" s.preserve_paths = "package.json", "LICENSE", "LICENSE-docs" diff --git a/Libraries/ActionSheetIOS/React-RCTActionSheet.podspec b/Libraries/ActionSheetIOS/React-RCTActionSheet.podspec index 1ba2b9c8d4d284..ed7d9fb30ccac5 100644 --- a/Libraries/ActionSheetIOS/React-RCTActionSheet.podspec +++ b/Libraries/ActionSheetIOS/React-RCTActionSheet.podspec @@ -24,7 +24,7 @@ Pod::Spec.new do |s| s.documentation_url = "https://reactnative.dev/docs/actionsheetios" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "*.{m}" s.preserve_paths = "package.json", "LICENSE", "LICENSE-docs" diff --git a/Libraries/Blob/React-RCTBlob.podspec b/Libraries/Blob/React-RCTBlob.podspec index f13d6b5a403d42..4ccdef4a905a56 100644 --- a/Libraries/Blob/React-RCTBlob.podspec +++ b/Libraries/Blob/React-RCTBlob.podspec @@ -26,7 +26,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "*.{m,mm}" diff --git a/Libraries/FBLazyVector/FBLazyVector.podspec b/Libraries/FBLazyVector/FBLazyVector.podspec index 2589deedb00f28..316a5c8066e8a7 100644 --- a/Libraries/FBLazyVector/FBLazyVector.podspec +++ b/Libraries/FBLazyVector/FBLazyVector.podspec @@ -23,7 +23,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS ISS#2323203) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS ISS#2323203) s.source = source s.source_files = "**/*.{c,h,m,mm,cpp}" s.header_dir = "FBLazyVector" diff --git a/Libraries/FBReactNativeSpec/FBReactNativeSpec.podspec b/Libraries/FBReactNativeSpec/FBReactNativeSpec.podspec index 918eb2f371c314..f77fd854467089 100644 --- a/Libraries/FBReactNativeSpec/FBReactNativeSpec.podspec +++ b/Libraries/FBReactNativeSpec/FBReactNativeSpec.podspec @@ -26,7 +26,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS ISS#2323203) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS ISS#2323203) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "**/*.{c,h,m,mm,cpp}" diff --git a/Libraries/Image/React-RCTImage.podspec b/Libraries/Image/React-RCTImage.podspec index 3cfb96ee430476..a74baca2cb3545 100644 --- a/Libraries/Image/React-RCTImage.podspec +++ b/Libraries/Image/React-RCTImage.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.documentation_url = "https://reactnative.dev/docs/image" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "*.{m,mm}" diff --git a/Libraries/LinkingIOS/React-RCTLinking.podspec b/Libraries/LinkingIOS/React-RCTLinking.podspec index a262a0f6b4376d..786ecfcfddc781 100644 --- a/Libraries/LinkingIOS/React-RCTLinking.podspec +++ b/Libraries/LinkingIOS/React-RCTLinking.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.documentation_url = "https://reactnative.dev/docs/linking" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "*.{m,mm}" diff --git a/Libraries/NativeAnimation/React-RCTAnimation.podspec b/Libraries/NativeAnimation/React-RCTAnimation.podspec index f79a098a76fa33..b79d854edf7365 100644 --- a/Libraries/NativeAnimation/React-RCTAnimation.podspec +++ b/Libraries/NativeAnimation/React-RCTAnimation.podspec @@ -26,7 +26,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "{Drivers/*,Nodes/*,*}.{m,mm}" diff --git a/Libraries/Network/React-RCTNetwork.podspec b/Libraries/Network/React-RCTNetwork.podspec index f2275bcb9cd6af..0839802ee3e5d5 100644 --- a/Libraries/Network/React-RCTNetwork.podspec +++ b/Libraries/Network/React-RCTNetwork.podspec @@ -26,7 +26,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "*.{m,mm}" diff --git a/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec b/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec index 05c056cfea415a..28b0ebfae93201 100644 --- a/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec +++ b/Libraries/PushNotificationIOS/React-RCTPushNotification.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.documentation_url = "https://reactnative.dev/docs/pushnotificationios" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "*.{m,mm}" diff --git a/Libraries/RCTRequired/RCTRequired.podspec b/Libraries/RCTRequired/RCTRequired.podspec index 063d4fce0b2f45..753d67b382a4da 100644 --- a/Libraries/RCTRequired/RCTRequired.podspec +++ b/Libraries/RCTRequired/RCTRequired.podspec @@ -23,7 +23,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS ISS#2323203) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS ISS#2323203) s.source = source s.source_files = "**/*.{c,h,m,mm,cpp}" s.header_dir = "RCTRequired" diff --git a/Libraries/Settings/React-RCTSettings.podspec b/Libraries/Settings/React-RCTSettings.podspec index dc8d449d345ca0..42995840793f80 100644 --- a/Libraries/Settings/React-RCTSettings.podspec +++ b/Libraries/Settings/React-RCTSettings.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.documentation_url = "https://reactnative.dev/docs/settings" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "*.{m,mm}" diff --git a/Libraries/Text/React-RCTText.podspec b/Libraries/Text/React-RCTText.podspec index 276ee8ba25787c..e7a55482a37a05 100644 --- a/Libraries/Text/React-RCTText.podspec +++ b/Libraries/Text/React-RCTText.podspec @@ -24,7 +24,7 @@ Pod::Spec.new do |s| s.documentation_url = "https://reactnative.dev/docs/text" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "**/*.{h,m}" s.ios.exclude_files = "**/macOS/*" # TODO(macOS ISS#2323203) diff --git a/Libraries/TypeSafety/RCTTypeSafety.podspec b/Libraries/TypeSafety/RCTTypeSafety.podspec index 5cd02a9f8119ca..94d21256cbe7d1 100644 --- a/Libraries/TypeSafety/RCTTypeSafety.podspec +++ b/Libraries/TypeSafety/RCTTypeSafety.podspec @@ -26,7 +26,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS ISS#2323203) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS ISS#2323203) s.compiler_flags = folly_compiler_flags s.source = source s.source_files = "**/*.{c,h,m,mm,cpp}" diff --git a/Libraries/Vibration/React-RCTVibration.podspec b/Libraries/Vibration/React-RCTVibration.podspec index 4b4bb0512eae0e..46384ce09e6012 100644 --- a/Libraries/Vibration/React-RCTVibration.podspec +++ b/Libraries/Vibration/React-RCTVibration.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.documentation_url = "https://reactnative.dev/docs/vibration" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "*.{m,mm}" diff --git a/README.md b/README.md index 07bda51d9f120c..ca535ec912a306 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ You can read more about the macOS implementation in our website - [React Native ## Requirements -You can run React Native for macOS apps on Mac devices with versions [High Sierra (10.13)](https://www.apple.com/newsroom/2017/09/macos-high-sierra-now-available-as-a-free-update/) or newer. +You can run React Native for macOS apps on Mac devices with versions Mojave (10.14) or newer. For a full and detailed list of the system requirements and how to set up your development platform, see our [System Requirements](https://microsoft.github.io/react-native-windows/docs/rnm-dependencies) documentation on our website. diff --git a/RNTester/Podfile b/RNTester/Podfile index 6dfe6a31a45d94..b9cbc443e1096e 100644 --- a/RNTester/Podfile +++ b/RNTester/Podfile @@ -83,19 +83,4 @@ end post_install do |installer| flipper_post_install(installer) - installer.pods_project.targets.each do |target| - # [TODO(macOS ISS#2323203): the internal Microsoft build pipeline needs iOS arm64e slices - if target.platform_name == :ios - target.build_configurations.each do |config| - (config.build_settings['ARCHS'] ||= ['$(ARCHS_STANDARD)']) << 'arm64e' - end - end - # TODO(macOS ISS#2323203): the internal Microsoft build pipeline needs macOS arm64 slices - if target.platform_name == :osx - target.build_configurations.each do |config| - (config.build_settings['ARCHS'] ||= ['$(ARCHS_STANDARD)']) << ' arm64' - end - end - # ]TODO(macOS ISS#2323203) - end end diff --git a/RNTester/Podfile.lock b/RNTester/Podfile.lock index 6fb054f18fe47b..66f45588305e1c 100644 --- a/RNTester/Podfile.lock +++ b/RNTester/Podfile.lock @@ -516,12 +516,12 @@ EXTERNAL SOURCES: :path: "../ReactCommon/yoga" SPEC CHECKSUMS: - boost-for-react-native: dabda8622e76020607c2ae1e65cc0cda8b61479d + boost-for-react-native: a110407d9db2642fd2e1bcd7c5a51c81f2521dc9 CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845 CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f - DoubleConversion: 56a44bcfd14ab2ff66f5a146b2e875eb4b69b19b - FBLazyVector: 33306016e21286a3ebf05b2e74758ecb51b487cb - FBReactNativeSpec: eba7c1b592e557c3d328af72fcd04fa5ad9dc732 + DoubleConversion: 2b45d0f8e156a5b02354c8a4062de64d41ccb4e0 + FBLazyVector: 92d78d01de741fe34b2d751e55a037653358ac0c + FBReactNativeSpec: e8382054abb3fb8270af2bca565a9f0577830525 Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365 Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3 @@ -529,39 +529,39 @@ SPEC CHECKSUMS: Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7 FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d - glog: 1cb7c408c781ae8f35bbababe459b45e3dee4ec1 + glog: 789873d01e4b200777d0a09bc23d548446758699 hermes: 12d049af0d8e8379c5b3b54ffb1919d670045bdc - libevent: ee9265726a1fc599dea382964fa304378affaa5f + libevent: 59938c595b8c19e50c83250628ffed9ebf662183 OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355 - RCT-Folly: 1347093ffe75e152d846f7e45a3ef901b60021aa - RCTRequired: c1be2a438c43a3bbaae1c648944e74f09bf7b6df - RCTTypeSafety: 8a51d44eafbc4d6b845f4bf158973cb15017af4a - React: cd84a8114f257b60d426051214bb220e01f31853 - React-ART: dc713fc5e6fc9d91111ac8dcc36f423edaf726db - React-callinvoker: 22c4350c8d512f0c4d28c652de164d261790eee3 - React-Core: 301a9137b800e78e100804b201a2751eba784396 - React-CoreModules: 1f63ebf5afc57f1182c29d071f1d0b36729d3c1e - React-cxxreact: 4d4c317d32055a60063d6788962df6d8e5e959a9 - React-jsi: 5130ca982064487449da1e916815a2ab17c8b5f0 - React-jsiexecutor: fbc8b1046ca4a8a9b5fc1e92e506a96e22600f5f - React-jsinspector: dbed1bb565004515d7470a54673da99cd36d6ac8 - React-RCTActionSheet: 8d7d186c02a07c96ff8b4193c39c829003d5e401 - React-RCTAnimation: 769775382fcb0fd801bc0e8c4ba69b112b605e97 - React-RCTBlob: c0e2dba349e77aa3ccbc99b1c61f0f8ba53b6add - React-RCTImage: d1424690347182fd14183d471fb756542b9645b8 - React-RCTLinking: f8d483d3e8e4bcc2749e67d5f68b8006dfe5eb3d - React-RCTNetwork: 7d4f1caaae3b87a9c3e924eeea4805a3bcaf9144 - React-RCTPushNotification: 03dc947964f5c2a3c53389e7c386b5b8bcef2b17 - React-RCTSettings: 6be17236bffccbcfa3a57dd961b7682998a92a11 - React-RCTTest: 0de4043839e8b9782e9ca4c3ecaf7c6dace48027 - React-RCTText: efcbbf74281e0c42f0c7737c8cc0f148b3cf8983 - React-RCTVibration: 45f0a1b6780752f516bf81717cfdf901896e93a7 - React-TurboModuleCxx-RNW: 4da8eb44b10ab3c5bbab9fcb0a8ae415c20ea3c9 - React-TurboModuleCxx-WinRTPort: 723f549e1b886bae14bf16b6ef8420aef0d3f190 - ReactCommon: 24aa1f1de935591060e0730148c0d85da7567214 - Yoga: e009ba9e81fe6c0b4067e62295faa522982b3860 + RCT-Folly: 55d0039b24e192081ec0b2257f7bd9f42e382fb7 + RCTRequired: 12daee8719711b00cac01ab3f90678356431596e + RCTTypeSafety: a4fd9c36901830973a05d074afc75a5147b3e6f2 + React: 7cf7caa74c0c289d292ae2b2022a259e83b1c4c3 + React-ART: d50f359f8ba778f8d184cd4b7d5bade4bd3aad81 + React-callinvoker: 366e5648b012f7b02e1577d6c3d021763a10c9cc + React-Core: 712fe9e8aedce8c8f27d46f171a899487617403f + React-CoreModules: 75fc59024dea0708b2da5415298f491881de74e7 + React-cxxreact: 1935fb10e2eecdcea1b225b6679e329b00889611 + React-jsi: f7c5b9f6ed6bcc2b3ee6aa7a791d317ccbb8313f + React-jsiexecutor: cea9a058f0fcb1b8d4c1fad3fc3bb5088c2979bd + React-jsinspector: 6b83e9193f44d73358302e53a913e932c385cfa7 + React-RCTActionSheet: 3f81bc159b69758f2c859f3cd85b15bb9c223ecb + React-RCTAnimation: af41afc5b073b180274fcdb2026b9b7b10c3b798 + React-RCTBlob: 5a48ac364cc476941099367f5fbeffee0673fa87 + React-RCTImage: 39e2de7650342313728d40955fabd278e5c4c134 + React-RCTLinking: ed8eb075cff2349e89402663585ffef0381848a2 + React-RCTNetwork: 9de10fa1593b0db1cca5bbfd5b2a82e809c8758b + React-RCTPushNotification: 1e7591f9ef1fa557f017b1eaf99e5c88fd5c8e6f + React-RCTSettings: e7a081bcc8c518ce59749ba3803a040f90483ffc + React-RCTTest: aa3ca9247f85c78eee060d74d4a8dbdb0e90c47e + React-RCTText: efbf71e9af9d6e6a7f9fa5ac87b4bd8baf1d8249 + React-RCTVibration: d8ef2a3e93ebb0de2c4e0dbbaee56cdd54c5441b + React-TurboModuleCxx-RNW: 18bb71af41fe34c8b12a56bef60aae7ee32b0817 + React-TurboModuleCxx-WinRTPort: 4719553bda4c93a64b8e1d6a474a8afceb49419c + ReactCommon: f399d6afd467e33cc3042a9f2eed99e9b8c57eb3 + Yoga: 831921041b154f425e43cd8c236502457c632d71 YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: 18ca7d3b0e7db79041574a8bb6200b9e1c2d5359 +PODFILE CHECKSUM: baaa75a5807a228f32c4218f28c9260336518038 -COCOAPODS: 1.9.3 +COCOAPODS: 1.9.1 diff --git a/RNTester/RCTTest/React-RCTTest.podspec b/RNTester/RCTTest/React-RCTTest.podspec index fa90f9eed2ebc2..e59791cae35843 100644 --- a/RNTester/RCTTest/React-RCTTest.podspec +++ b/RNTester/RCTTest/React-RCTTest.podspec @@ -26,7 +26,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "**/*.{h,m,mm}" diff --git a/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testLayoutExample_1-iOS14@2x.png b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testLayoutExample_1-iOS14@2x.png new file mode 100644 index 00000000000000..b9e88a87ae316d Binary files /dev/null and b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testLayoutExample_1-iOS14@2x.png differ diff --git a/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testScrollViewExample_1-iOS14@2x.png b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testScrollViewExample_1-iOS14@2x.png new file mode 100644 index 00000000000000..be30f368dff242 Binary files /dev/null and b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testScrollViewExample_1-iOS14@2x.png differ diff --git a/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSwitchExample_1-iOS14@2x.png b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSwitchExample_1-iOS14@2x.png new file mode 100644 index 00000000000000..01aebc6813dcba Binary files /dev/null and b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testSwitchExample_1-iOS14@2x.png differ diff --git a/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testTextExample_1-iOS14@2x.png b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testTextExample_1-iOS14@2x.png new file mode 100644 index 00000000000000..eb37b21e2c5ef0 Binary files /dev/null and b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testTextExample_1-iOS14@2x.png differ diff --git a/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testViewExample_1-iOS14@2x.png b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testViewExample_1-iOS14@2x.png new file mode 100644 index 00000000000000..6cb548931249cc Binary files /dev/null and b/RNTester/RNTesterIntegrationTests/ReferenceImages/RNTester-js-RNTesterApp.ios/testViewExample_1-iOS14@2x.png differ diff --git a/RNTester/RNTesterPods.xcodeproj/project.pbxproj b/RNTester/RNTesterPods.xcodeproj/project.pbxproj index 9408341a8587f4..c101a29bc80990 100644 --- a/RNTester/RNTesterPods.xcodeproj/project.pbxproj +++ b/RNTester/RNTesterPods.xcodeproj/project.pbxproj @@ -1711,7 +1711,7 @@ CODE_SIGN_STYLE = Automatic; DEBUG_INFORMATION_FORMAT = dwarf; EXECUTABLE_PREFIX = lib; - MACOSX_DEPLOYMENT_TARGET = 10.15; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( @@ -1736,7 +1736,7 @@ COPY_PHASE_STRIP = NO; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; EXECUTABLE_PREFIX = lib; - MACOSX_DEPLOYMENT_TARGET = 10.15; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( "$(inherited)", @@ -1931,7 +1931,7 @@ "$(inherited)", "@executable_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( @@ -1971,7 +1971,7 @@ "$(inherited)", "@executable_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( "$(inherited)", @@ -2005,7 +2005,7 @@ "@executable_path/../Frameworks", "@loader_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( @@ -2041,7 +2041,7 @@ "@executable_path/../Frameworks", "@loader_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( "$(inherited)", @@ -2076,7 +2076,7 @@ "@executable_path/../Frameworks", "@loader_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( @@ -2109,7 +2109,7 @@ "@executable_path/../Frameworks", "@loader_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; MTL_FAST_MATH = YES; OTHER_CFLAGS = ( "$(inherited)", diff --git a/React-Core.podspec b/React-Core.podspec index c8d1f050fa5c86..beeffd4351756d 100644 --- a/React-Core.podspec +++ b/React-Core.podspec @@ -42,7 +42,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS ISS#2323203) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS ISS#2323203) s.source = source s.resource_bundle = { "AccessibilityResources" => ["React/AccessibilityResources/*.lproj"]} s.compiler_flags = folly_compiler_flags + ' ' + boost_compiler_flags @@ -86,7 +86,7 @@ Pod::Spec.new do |s| # [TODO(macOS GH#214) s.subspec "Hermes" do |ss| - ss.platforms = { :osx => "10.13" } + ss.platforms = { :osx => "10.14" } ss.source_files = "ReactCommon/hermes/executor/*.{cpp,h}", "ReactCommon/hermes/inspector/*.{cpp,h}", "ReactCommon/hermes/inspector/chrome/*.{cpp,h}", diff --git a/React.podspec b/React.podspec index 811e062b143306..daf2d96cb1d394 100644 --- a/React.podspec +++ b/React.podspec @@ -36,7 +36,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.preserve_paths = "package.json", "LICENSE", "LICENSE-docs" s.cocoapods_version = ">= 1.2.0" diff --git a/React/CoreModules/React-CoreModules.podspec b/React/CoreModules/React-CoreModules.podspec index e547a3f1f2852f..30177e3aecc4b8 100644 --- a/React/CoreModules/React-CoreModules.podspec +++ b/React/CoreModules/React-CoreModules.podspec @@ -26,7 +26,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS ISS#2323203) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS ISS#2323203) s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness' s.source = source s.source_files = "**/*.{c,m,mm,cpp}" diff --git a/ReactCommon/ReactCommon.podspec b/ReactCommon/ReactCommon.podspec index 0948e9d3da9dc1..82b42b6c0a2280 100644 --- a/ReactCommon/ReactCommon.podspec +++ b/ReactCommon/ReactCommon.podspec @@ -28,7 +28,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.header_dir = "ReactCommon" # Use global header_dir for all subspecs for use_frameworks! compatibility s.compiler_flags = folly_compiler_flags + ' ' + boost_compiler_flags diff --git a/ReactCommon/callinvoker/React-callinvoker.podspec b/ReactCommon/callinvoker/React-callinvoker.podspec index c983bfa5980836..21e1d9ed7eeaab 100644 --- a/ReactCommon/callinvoker/React-callinvoker.podspec +++ b/ReactCommon/callinvoker/React-callinvoker.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "**/*.{cpp,h}" s.header_dir = "ReactCommon" diff --git a/ReactCommon/cxxreact/React-cxxreact.podspec b/ReactCommon/cxxreact/React-cxxreact.podspec index 5d79b221dca346..12c0ac858aa5bb 100644 --- a/ReactCommon/cxxreact/React-cxxreact.podspec +++ b/ReactCommon/cxxreact/React-cxxreact.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "*.{cpp,h}" s.exclude_files = "SampleCxxModule.*" diff --git a/ReactCommon/jsi/React-jsi.podspec b/ReactCommon/jsi/React-jsi.podspec index 6bc99df93b3f24..00fa87c93dc1f4 100644 --- a/ReactCommon/jsi/React-jsi.podspec +++ b/ReactCommon/jsi/React-jsi.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "**/*.{cpp,h}" s.exclude_files = "**/test/*" diff --git a/ReactCommon/jsiexecutor/React-jsiexecutor.podspec b/ReactCommon/jsiexecutor/React-jsiexecutor.podspec index b67a03eaca9436..eef1279ac5e33f 100644 --- a/ReactCommon/jsiexecutor/React-jsiexecutor.podspec +++ b/ReactCommon/jsiexecutor/React-jsiexecutor.podspec @@ -27,7 +27,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "jsireact/*.{cpp,h}" s.compiler_flags = folly_compiler_flags + ' ' + boost_compiler_flags diff --git a/ReactCommon/jsinspector/React-jsinspector.podspec b/ReactCommon/jsinspector/React-jsinspector.podspec index 17677010eeb6a5..ff5e71660cc408 100644 --- a/ReactCommon/jsinspector/React-jsinspector.podspec +++ b/ReactCommon/jsinspector/React-jsinspector.podspec @@ -23,7 +23,7 @@ Pod::Spec.new do |s| s.homepage = "https://reactnative.dev/" s.license = package["license"] s.author = "Facebook, Inc. and its affiliates" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) s.source = source s.source_files = "*.{cpp,h}" s.header_dir = 'jsinspector' diff --git a/ReactCommon/yoga/Yoga.podspec b/ReactCommon/yoga/Yoga.podspec index d2943e6138f4e6..38e087939f71ad 100644 --- a/ReactCommon/yoga/Yoga.podspec +++ b/ReactCommon/yoga/Yoga.podspec @@ -43,7 +43,7 @@ Pod::Spec.new do |spec| ] # Pinning to the same version as React.podspec. - spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } + spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # Set this environment variable when *not* using the `:path` option to install the pod. # E.g. when publishing this spec to a spec repo. diff --git a/ReactTurboModuleCxx/React-TurboModuleCxx-RNW.podspec b/ReactTurboModuleCxx/React-TurboModuleCxx-RNW.podspec index 5367ab41e65ece..42dac31a0dcced 100644 --- a/ReactTurboModuleCxx/React-TurboModuleCxx-RNW.podspec +++ b/ReactTurboModuleCxx/React-TurboModuleCxx-RNW.podspec @@ -13,7 +13,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/microsoft/react-native-windows" s.license = package["license"] s.author = "Microsoft Corporation" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } s.compiler_flags = folly_compiler_flags s.source = { :git => 'https://github.com/microsoft/react-native-windows.git', :commit => "d9077991441889ddaa18a8af6a2cc8514ca7714d" } diff --git a/ReactTurboModuleCxx/React-TurboModuleCxx-WinRTPort.podspec b/ReactTurboModuleCxx/React-TurboModuleCxx-WinRTPort.podspec index 3becd32bef960c..8e0bfc601d8107 100644 --- a/ReactTurboModuleCxx/React-TurboModuleCxx-WinRTPort.podspec +++ b/ReactTurboModuleCxx/React-TurboModuleCxx-WinRTPort.podspec @@ -21,7 +21,7 @@ Pod::Spec.new do |s| s.homepage = "https://github.com/microsoft/react-native-macos" s.license = package["license"] s.author = "Microsoft Corporation" - s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } + s.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } s.compiler_flags = folly_compiler_flags s.source = source diff --git a/local-cli/generator-macos/templates/macos/HelloWorld.xcodeproj/project.pbxproj b/local-cli/generator-macos/templates/macos/HelloWorld.xcodeproj/project.pbxproj index 54e3200f96b4fc..933b32730bceb2 100644 --- a/local-cli/generator-macos/templates/macos/HelloWorld.xcodeproj/project.pbxproj +++ b/local-cli/generator-macos/templates/macos/HelloWorld.xcodeproj/project.pbxproj @@ -465,7 +465,7 @@ DEAD_CODE_STRIPPING = NO; INFOPLIST_FILE = "HelloWorld-macos/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -485,7 +485,7 @@ CURRENT_PROJECT_VERSION = 1; INFOPLIST_FILE = "HelloWorld-macos/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 10.13; + MACOSX_DEPLOYMENT_TARGET = 10.14; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", diff --git a/local-cli/generator-macos/templates/macos/Podfile b/local-cli/generator-macos/templates/macos/Podfile index 44ba1589fed528..b0c122413b3fe3 100644 --- a/local-cli/generator-macos/templates/macos/Podfile +++ b/local-cli/generator-macos/templates/macos/Podfile @@ -2,7 +2,7 @@ require_relative '../node_modules/react-native-macos/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' target 'HelloWorld-macOS' do - platform :macos, '10.13' + platform :macos, '10.14' use_native_modules! use_react_native!( :path => '../node_modules/react-native-macos', diff --git a/scripts/vsto-test-ci.sh b/scripts/vsto-test-ci.sh index 2843bff8947bd0..8711f77701313b 100755 --- a/scripts/vsto-test-ci.sh +++ b/scripts/vsto-test-ci.sh @@ -18,27 +18,27 @@ npm install # Setup packager and WebSocket test server . ./scripts/vsto-test-setup.sh -# XCode macOS test +# Xcode macOS test xcodebuild -sdk macosx -configuration Debug -project ./RNTester/RNTester.xcodeproj -scheme RNTester-macOS build test DSTROOT=$OUTPUTDIR/macosx/Debug/build.dst OBJROOT=$OUTPUTDIR/macosx/Debug/build.obj SYMROOT=$OUTPUTDIR/macosx/Debug/build.sym SHARED_PRECOMPS_DIR=$OUTPUTDIR/macosx/Debug/build.pch -destination platform=macOS,arch=x86_64 ONLY_ACTIVE_ARCH=NO DEVELOPMENT_TEAM=UBF8T346G9 | /usr/local/bin/xcpretty -r junit --no-color if [ $? -ne 0 ]; then - echo "XCode macOS test FAILED" + echo "Xcode macOS test FAILED" exit 1 else - # XCode iOS test + # Xcode iOS test xcodebuild -sdk iphonesimulator -configuration Debug -project ./RNTester/RNTester.xcodeproj -scheme RNTester build test DSTROOT=$OUTPUTDIR/iphonesimulator/Debug/build.dst OBJROOT=$OUTPUTDIR/iphonesimulator/Debug/build.obj SYMROOT=$OUTPUTDIR/iphonesimulator/Debug/build.sym SHARED_PRECOMPS_DIR=$OUTPUTDIR/iphonesimulator/Debug/build.pch -destination platform="iOS Simulator,OS=latest,name=iPhone 5s" ONLY_ACTIVE_ARCH=NO DEVELOPMENT_TEAM=UBF8T346G9 | /usr/local/bin/xcpretty -r junit --no-color if [ $? -ne 0 ]; then - echo "XCode iOS test FAILED" + echo "Xcode iOS test FAILED" exit 1 else - # XCode tvOS test + # Xcode tvOS test xcodebuild -configuration Debug -project ./RNTester/RNTester.xcodeproj -scheme RNTester-tvOS build test DSTROOT=$OUTPUTDIR/iphoneos/Debug/build.dst OBJROOT=$OUTPUTDIR/iphoneos/Debug/build.obj SYMROOT=$OUTPUTDIR/iphoneos/Debug/build.sym SHARED_PRECOMPS_DIR=$OUTPUTDIR/iphoneos/Debug/build.pch -destination platform="tvOS Simulator,OS=latest,name=Apple TV" ONLY_ACTIVE_ARCH=NO DEVELOPMENT_TEAM=UBF8T346G9 | /usr/local/bin/xcpretty -r junit --no-color if [ $? -ne 0 ]; then - echo "XCode tvOS test FAILED" + echo "Xcode tvOS test FAILED" exit 1 fi fi diff --git a/scripts/vsto-test-cleanup.sh b/scripts/vsto-test-cleanup.sh index d249743550a02b..0d8e976893a075 100755 --- a/scripts/vsto-test-cleanup.sh +++ b/scripts/vsto-test-cleanup.sh @@ -2,7 +2,7 @@ set -ex # Script used by the VSTO build agent to cleanup the packager and web socket server -# after the XCode test step has completed +# after the Xcode test step has completed # kill whatever is occupying port 8081 (packager) lsof -i tcp:8081 | awk 'NR!=1 {print $2}' | xargs kill diff --git a/third-party-podspecs/DoubleConversion.podspec b/third-party-podspecs/DoubleConversion.podspec index 3a0d0051319d02..24e4f11c9cab54 100644 --- a/third-party-podspecs/DoubleConversion.podspec +++ b/third-party-podspecs/DoubleConversion.podspec @@ -19,6 +19,6 @@ Pod::Spec.new do |spec| spec.compiler_flags = '-Wno-unreachable-code' # Pinning to the same version as React.podspec. - spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) end diff --git a/third-party-podspecs/RCT-Folly.podspec b/third-party-podspecs/RCT-Folly.podspec index 1c4643ac89c9cf..c50bbaa6393b07 100644 --- a/third-party-podspecs/RCT-Folly.podspec +++ b/third-party-podspecs/RCT-Folly.podspec @@ -124,5 +124,5 @@ Pod::Spec.new do |spec| end # Pinning to the same version as React.podspec. - spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) end diff --git a/third-party-podspecs/boost-for-react-native.podspec b/third-party-podspecs/boost-for-react-native.podspec index fa9be88325021b..b18301127f502c 100644 --- a/third-party-podspecs/boost-for-react-native.podspec +++ b/third-party-podspecs/boost-for-react-native.podspec @@ -11,7 +11,7 @@ Pod::Spec.new do |spec| # Pinning to the same version as React.podspec. # TODO: Move this osx addition back upstream to https://github.com/react-native-community/boost-for-react-native - spec.platforms = { :ios => '8.0', :tvos => '9.2', :osx => "10.13" } + spec.platforms = { :ios => '8.0', :tvos => '9.2', :osx => "10.14" } spec.requires_arc = false spec.module_name = 'boost' diff --git a/third-party-podspecs/glog.podspec b/third-party-podspecs/glog.podspec index 6ecaa142bc34fc..be6d96e7b2463d 100644 --- a/third-party-podspecs/glog.podspec +++ b/third-party-podspecs/glog.podspec @@ -34,6 +34,6 @@ Pod::Spec.new do |spec| "HEADER_SEARCH_PATHS" => "$(PODS_TARGET_SRCROOT)/src" } # Pinning to the same version as React.podspec. - spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.13" } # TODO(macOS GH#214) + spec.platforms = { :ios => "10.0", :tvos => "10.0", :osx => "10.14" } # TODO(macOS GH#214) end diff --git a/third-party-podspecs/libevent.podspec b/third-party-podspecs/libevent.podspec index 61eb60f919ce41..f8a94ad588e74a 100644 --- a/third-party-podspecs/libevent.podspec +++ b/third-party-podspecs/libevent.podspec @@ -544,7 +544,7 @@ Pod::Spec.new do |spec| spec.homepage = "https://libevent.org" spec.license = { :type => "BSD 3-Clause", :file => "LICENSE" } spec.author = "Niels Provos and Nick Mathewson" - spec.platforms = { :osx => "10.13" } + spec.platforms = { :osx => "10.14" } spec.source = { :git => "https://github.com/libevent/libevent.git", :tag => "release-#{spec.version}-stable" } spec.default_subspec = "core" spec.prepare_command = "touch evconfig-private.h; echo -e #{Shellwords.escape(CONFIG_WITHOUT_OPENSSL)} > include/event2/event-config.h"