Skip to content

Commit

Permalink
[LOCAL] Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cipolleschi committed Oct 12, 2023
1 parent b1496be commit 977f03a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ jobs:
steps:
- run:
name: Generate RNTesterPods Workspace
command: cd packages/rn-tester && bundle exec pod install --verbose
command: cd packages/rn-tester && bundle install && bundle exec pod install --verbose

# -------------------------
# Runs iOS unit tests
Expand Down Expand Up @@ -772,7 +772,7 @@ jobs:
name: Install CocoaPods dependencies
command: |
rm -rf packages/rn-tester/Pods
cd packages/rn-tester && bundle exec pod install
cd packages/rn-tester && bundle install && bundle exec pod install
- run:
name: Build RNTester
Expand Down
1 change: 1 addition & 0 deletions scripts/update_podfile_lock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ validate_env () {

update_pods () {
cd "$RNTESTER_DIR" || exit
bundle install || exit
bundle check || exit
bundle exec pod install
cd "$THIS_DIR" || exit
Expand Down

0 comments on commit 977f03a

Please sign in to comment.