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

Build stability fixes and tweaks #420

Merged
merged 3 commits into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-

- name: Increase max file watchers
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

- name: Bundle JS
run: npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/ --verbose

Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,7 @@ jobs:

- run: yarn --frozen-lockfile

- name: Install CocoaPods
run: gem install cocoapods

- name: Update Pods
run: pod repo update
working-directory: ./ios
- run: gem install cocoapods

- name: Cache CocoaPods
uses: actions/cache@v1
Expand All @@ -40,8 +35,7 @@ jobs:
restore-keys: |
${{ runner.OS }}-pods-

- name: Pod Install
run: pod install
- run: pod install --repo-update
working-directory: ./ios

- name: Bundle iOS JS
Expand Down