Last active
June 23, 2018 15:02
-
-
Save dazza5000/0a807de012c7281f14787cf30bf7be0e to your computer and use it in GitHub Desktop.
Revisions
-
dazza5000 revised this gist
Jun 23, 2018 . 1 changed file with 29 additions and 29 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,30 +1,30 @@ version: 2 jobs: build: working_directory: ~/code docker: - image: circleci/android:api-27-alpha environment: JVM_OPTS: -Xmx3200m steps: - checkout - restore_cache: key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} - run: name: Download Dependencies command: | sudo chmod +x gradlew ./gradlew androidDependencies - save_cache: paths: - ~/.gradle key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }} - run: name: Build Debug command: ./gradlew assembleProdDebug - store_artifacts: path: app/build/outputs/apk/prod/debug/app-prod-debug.apk destination: app-prod-debug.apk - run: name: Uploading on Beta command: ./gradlew crashlyticsUploadDistributionProdDebug -
dazza5000 revised this gist
May 1, 2016 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,7 +17,6 @@ dependencies: - echo y | android update sdk --no-ui --all --filter build-tools-23.0.3 - echo y | android update sdk --no-ui --all --filter android-23 - echo y | android update sdk --no-ui --all --filter tools - echo y | android update sdk --no-ui --all --filter extra-android-m2repository - echo y | android update sdk --no-ui --all --filter extra-android-support - echo y | android update sdk --no-ui --all --filter extra-google-google_play_services -
dazza5000 revised this gist
May 1, 2016 . No changes.There are no files selected for viewing
-
dazza5000 revised this gist
May 1, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ general: artifacts: - /home/ubuntu/CriminalIntent/app/build/outputs/apk/ machine: environment: -
dazza5000 created this gist
Apr 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ # # Build configuration for Circle CI # general: artifacts: - /home/ubuntu/austin-feeds-me/app/build/outputs/apk/ machine: environment: ANDROID_HOME: /usr/local/android-sdk-linux GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"' dependencies: pre: - echo y | android update sdk --no-ui --all --filter tools,platform-tools,android-23 - echo y | android update sdk --no-ui --all --filter build-tools-23.0.3 - echo y | android update sdk --no-ui --all --filter android-23 - echo y | android update sdk --no-ui --all --filter tools - echo y | android update sdk --no-ui --all --filter build-tools-23.0.3 - echo y | android update sdk --no-ui --all --filter extra-android-m2repository - echo y | android update sdk --no-ui --all --filter extra-android-support - echo y | android update sdk --no-ui --all --filter extra-google-google_play_services - echo y | android update sdk --no-ui --all --filter extra-google-m2repository override: - ANDROID_HOME=/usr/local/android-sdk-linux ./gradlew dependencies test: override: - (./gradlew assemble): timeout: 360