Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(builds): CocoaPods install without Flipper #6955

Closed
wants to merge 8 commits into from
23 changes: 19 additions & 4 deletions bitrise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ stages:
- android_e2e_test: {}
run_e2e_android_stage:
workflows:
- android_e2e_test: {}
- android_e2e_test: {}
notify:
workflows:
- notify_success_on_slack: {}
Expand Down Expand Up @@ -350,7 +350,12 @@ workflows:
envman add --key BREW_OPT_APPLESIMUTILS --value "/usr/local/opt/applesimutils"
brew tap wix/brew
title: Set Env Path for caching deps
- cocoapods-install@2:
- script@1:
inputs:
- content: |-
#!/usr/bin/env bash
NO_FLIPPER=1 pod install --project-directory=ios
title: Run CocoaPods install without Flipper
is_always_run: false
- script@1:
inputs:
Expand Down Expand Up @@ -631,7 +636,12 @@ workflows:
- build_short_version_string: $VERSION_NAME
- build_version: $VERSION_NUMBER
- plist_path: $PROJECT_LOCATION_IOS/MetaMask/Info.plist
- cocoapods-install@2: {}
- script@1:
inputs:
- content: |-
#!/usr/bin/env bash
NO_FLIPPER=1 pod install --project-directory=ios
title: Run CocoaPods install without Flipper
- script@1:
inputs:
- content: |-
Expand Down Expand Up @@ -672,7 +682,12 @@ workflows:
- build_short_version_string: $VERSION_NAME
- build_version: $VERSION_NUMBER
- plist_path: $PROJECT_LOCATION_IOS/MetaMask/MetaMask-QA-Info.plist
- cocoapods-install@2: {}
- script@1:
inputs:
- content: |-
#!/usr/bin/env bash
NO_FLIPPER=1 pod install --project-directory=ios
title: Run CocoaPods install without Flipper
- script@1:
inputs:
- content: |-
Expand Down
Loading