File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -526,7 +526,7 @@ jobs:
526526 steps :
527527 - run :
528528 name : Generate RNTesterPods Workspace
529- command : cd packages/rn-tester && bundle exec pod install --verbose
529+ command : cd packages/rn-tester && bundle install && bundle exec pod install --verbose
530530
531531 # -------------------------
532532 # Runs iOS unit tests
@@ -772,7 +772,7 @@ jobs:
772772 name : Install CocoaPods dependencies
773773 command : |
774774 rm -rf packages/rn-tester/Pods
775- cd packages/rn-tester && bundle exec pod install
775+ cd packages/rn-tester && bundle install && bundle exec pod install
776776
777777 - run :
778778 name : Build RNTester
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ validate_env () {
2020
2121update_pods () {
2222 cd " $RNTESTER_DIR " || exit
23+ bundle install || exit
2324 bundle check || exit
2425 bundle exec pod install
2526 cd " $THIS_DIR " || exit
You can’t perform that action at this time.
0 commit comments