Skip to content

Commit

Permalink
Disable flipper on CI (#2843)
Browse files Browse the repository at this point in the history
## Description

Currently our iOS build fails on Flipper build. This PR adds `NO_FLIPPER` flag since it is no longer required.

## Test plan

Check that CI passes.
  • Loading branch information
m-bert authored Apr 4, 2024
1 parent 4889910 commit 611e7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: yarn
- name: Install pods
working-directory: ${{ matrix.working-directory }}/ios
run: bundle install && bundle exec pod install
run: bundle install && NO_FLIPPER=1 bundle exec pod install
- name: Build app
working-directory: ${{ matrix.working-directory }}
run: yarn ios --simulator=\"iPhone 14\" --mode Debug --verbose --terminal /bin/zsh

0 comments on commit 611e7cc

Please sign in to comment.