Skip to content

Commit 977f03a

Browse files
committed
[LOCAL] Fix CI
1 parent b1496be commit 977f03a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

scripts/update_podfile_lock.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ validate_env () {
2020

2121
update_pods () {
2222
cd "$RNTESTER_DIR" || exit
23+
bundle install || exit
2324
bundle check || exit
2425
bundle exec pod install
2526
cd "$THIS_DIR" || exit

0 commit comments

Comments
 (0)