From 977f03ae9dca092ae3d9cdbbd5155b07f2ba565a Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Thu, 12 Oct 2023 17:14:10 +0100 Subject: [PATCH] [LOCAL] Fix CI --- .circleci/config.yml | 4 ++-- scripts/update_podfile_lock.sh | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c933f71de2c..e7e1cacb6d1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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 diff --git a/scripts/update_podfile_lock.sh b/scripts/update_podfile_lock.sh index fa6db464666..6cfca208a42 100755 --- a/scripts/update_podfile_lock.sh +++ b/scripts/update_podfile_lock.sh @@ -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