From bfc10ba90fb30c3e95dfb41ae17fe8ee2ed4df5e Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Tue, 22 Jul 2025 08:48:40 -0700 Subject: [PATCH] Use prebuilds for nightlies (#52762) Summary: Use prebuilds for nightly checks. This should save a lot of time in CI. An example job which used to take 18 min took less than 4 min. ## Changelog: [Internal] - Pull Request resolved: https://github.com/facebook/react-native/pull/52762 Test Plan: GHA Sample job, 3' 23'': https://github.com/facebook/react-native/actions/runs/16447578916/job/46483698898?pr=52762 (Same job last night, 18' 27'': https://github.com/facebook/react-native/actions/runs/16434647827/job/46442342235) Reviewed By: cortinico Differential Revision: D78741195 Pulled By: cipolleschi fbshipit-source-id: 6b9dad215af19c17ed4b2bcd8a835214e33d0267 --- .github/actions/test-library-on-nightly/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test-library-on-nightly/action.yml b/.github/actions/test-library-on-nightly/action.yml index 5310dae7059..9001f8fac58 100644 --- a/.github/actions/test-library-on-nightly/action.yml +++ b/.github/actions/test-library-on-nightly/action.yml @@ -31,7 +31,7 @@ runs: run: | cd /tmp/RNApp/ios bundle install - bundle exec pod install + RCT_USE_RN_DEP=1 RCT_USE_PREBUILT_RNCORE=1 bundle exec pod install xcodebuild build \ -workspace RNApp.xcworkspace \ -scheme RNApp \