[LOCAL] Fix CI

This commit is contained in:
Riccardo Cipolleschi
2023-10-12 17:14:10 +01:00
parent b1496be007
commit 977f03ae9d
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -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
+1
View File
@@ -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