Skip to content

Commit

Permalink
feat(android): add circle fastlane build
Browse files Browse the repository at this point in the history
Signed-off-by: Sacha Froment <sfroment42@gmail.com>
  • Loading branch information
sfroment committed Aug 2, 2018
1 parent be9fa72 commit 109cfb2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Expand Up @@ -162,6 +162,23 @@ jobs:
command: |
env && cd ../../gomobile && gomobile init -v -ndk $ANDROID_NDK_HOME && make core.build.android
- restore_cache:
key: android-gems-{{ checksum "~/go/src/github.com/berty/berty/client/react-native/mobile/android/Gemfile.lock" }}

- run:
name: install bundle
command: bundle check || bundle install --path vendor/bundle

- save_cache:
key: android-gems-{{ checksum "~/go/src/github.com/berty/berty/client/react-native/mobile/android/Gemfile.lock" }}
paths:
- vendor/bundle

- run:
name: build app
command: |
time bundle exec fastlane android beta --verbose
Expand Down

0 comments on commit 109cfb2

Please sign in to comment.