Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
Fix for absolute paths in cocoapods generated build files by running …
Browse files Browse the repository at this point in the history
…pod install in CI. (#93)
  • Loading branch information
gwhelanLD authored and bwoskow-ld committed Sep 22, 2021
1 parent fe01992 commit 8659452
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ jobs:
- run: cd ../hello-react-native && npm install
- run: sudo npm install -g react-native-cli
- run: cp -r ../project/ ../hello-react-native/node_modules/launchdarkly-react-native-client-sdk/
# Newer cocoapods required for following pod install
- run: sudo gem install cocoapods
# RN 0.64 has an issue with embedding absolute paths in the cocoapods generated build files, so must regenerate.
# https://github.com/facebook/react-native/issues/31121
- run: cd ../hello-react-native/ios && pod install
- run: cd ../hello-react-native && react-native run-ios --configuration Release --simulator rn-ios

common:
Expand Down

0 comments on commit 8659452

Please sign in to comment.