From 7688f97d07fc003cc314c871588940370b72527a Mon Sep 17 00:00:00 2001 From: Gabriel Delavald Date: Tue, 31 Oct 2017 19:28:28 -0200 Subject: [PATCH] Adds gradlew step, remove gems --- circle.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/circle.yml b/circle.yml index 7aea721c8..e9d9c4ad6 100644 --- a/circle.yml +++ b/circle.yml @@ -18,8 +18,6 @@ dependencies: override: # The Android Gradle build will need the Android signing keystore keys setup - mkdir -p ~/.gradle - # Install Gems (fastlane, etc) - - bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 --without development # Install node modules - yarn install cache_directories: @@ -33,4 +31,6 @@ deployment: beta: branch: qa commands: - - yarn && ./node_modules/.bin/react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/ + - yarn + - ./node_modules/.bin/react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/ + - cd android && ./gradlew assembleRelease