You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Connect ReactNativeDependencies with ios jobs (#49978)
Summary:
Pull Request resolved: #49978
This change connects the RNDependencies we prebuild in CI with the other iOS jobs we have.
By doing so, we aim to speed up the build time in CI, saving time and money.
## Changelog:
[Internal] - Connect the ReactNativeDependencies in CI
Differential Revision: D71034587
RCT_USE_LOCAL_RN_DEP="$LOCAL_RN_DEP" HERMES_ENGINE_TARBALL_PATH=$HERMES_PATH RCT_NEW_ARCH_ENABLED=$NEW_ARCH_ENABLED bundle exec pod install
296
306
297
307
xcodebuild \
298
308
-scheme "RNTestProject" \
@@ -580,7 +590,7 @@ jobs:
580
590
581
591
test_ios_helloworld_with_ruby_3_2_0:
582
592
runs-on: macos-13
583
-
needs: [prepare_hermes_workspace, build_hermes_macos] # prepare_hermes_workspace must be there because we need its reference to retrieve a couple of outputs
593
+
needs: [prepare_hermes_workspace, build_hermes_macos, prebuild_apple_dependencies] # prepare_hermes_workspace must be there because we need its reference to retrieve a couple of outputs
584
594
env:
585
595
PROJECT_NAME: iOSTemplateProject
586
596
HERMES_WS_DIR: /tmp/hermes
@@ -598,7 +608,7 @@ jobs:
598
608
599
609
test_ios_helloworld:
600
610
runs-on: macos-13
601
-
needs: [prepare_hermes_workspace, build_hermes_macos] # prepare_hermes_workspace must be there because we need its reference to retrieve a couple of outputs
611
+
needs: [prepare_hermes_workspace, build_hermes_macos, prebuild_apple_dependencies] # prepare_hermes_workspace must be there because we need its reference to retrieve a couple of outputs
0 commit comments