Skip to content

Commit 3665160

Browse files
abueideclaude
andcommitted
fix(e2e): remove --repo-update from pod install commands
Pod install with --repo-update was being killed (signal 9) during local testing. Removed the flag from all E2E scripts since Podfile.lock already pins versions and repo updates aren't needed for reproducible builds. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent c197b8e commit 3665160

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

examples/E2E-compat/devbox.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
"shell": {
2121
"scripts": {
2222
"install": ["yarn install"],
23-
"install:pods": ["cd ios && pod install --repo-update && cd .."],
23+
"install:pods": ["cd ios && pod install && cd .."],
2424
"build:android": [
2525
"yarn install",
2626
"cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd .."
2727
],
2828
"build:ios": [
2929
"yarn install",
30-
"cd ios && pod install --repo-update && cd ..",
30+
"cd ios && pod install && cd ..",
3131
"ios.sh xcodebuild -workspace ios/AnalyticsReactNativeE2E.xcworkspace -scheme AnalyticsReactNativeE2E -configuration Release -sdk iphonesimulator -derivedDataPath ios/build"
3232
],
3333
"test:e2e:android": [
@@ -37,7 +37,7 @@
3737
],
3838
"test:e2e:ios": [
3939
"yarn install",
40-
"cd ios && pod install --repo-update && cd ..",
40+
"cd ios && pod install && cd ..",
4141
"ios.sh xcodebuild -workspace ios/AnalyticsReactNativeE2E.xcworkspace -scheme AnalyticsReactNativeE2E -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
4242
"yarn detox test --configuration ios.sim.release"
4343
],

examples/E2E-latest/devbox.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
"shell": {
2121
"scripts": {
2222
"install": ["yarn install"],
23-
"install:pods": ["cd ios && pod install --repo-update && cd .."],
23+
"install:pods": ["cd ios && pod install && cd .."],
2424
"build:android": [
2525
"yarn install",
2626
"cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd .."
2727
],
2828
"build:ios": [
2929
"yarn install",
30-
"cd ios && pod install --repo-update && cd ..",
30+
"cd ios && pod install && cd ..",
3131
"ios.sh xcodebuild -workspace ios/AnalyticsReactNativeE2E.xcworkspace -scheme AnalyticsReactNativeE2E -configuration Release -sdk iphonesimulator -derivedDataPath ios/build"
3232
],
3333
"test:e2e:android": [
@@ -37,7 +37,7 @@
3737
],
3838
"test:e2e:ios": [
3939
"yarn install",
40-
"cd ios && pod install --repo-update && cd ..",
40+
"cd ios && pod install && cd ..",
4141
"ios.sh xcodebuild -workspace ios/AnalyticsReactNativeE2E.xcworkspace -scheme AnalyticsReactNativeE2E -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
4242
"yarn detox test --configuration ios.sim.release"
4343
],

0 commit comments

Comments
 (0)