Skip to content

Instantly share code, notes, and snippets.

@rafakob
Forked from dazza5000/circle.yml
Created May 30, 2016 22:37
Show Gist options
  • Save rafakob/9a52987c52ae4d46c68c1f5b87ec1c49 to your computer and use it in GitHub Desktop.
Save rafakob/9a52987c52ae4d46c68c1f5b87ec1c49 to your computer and use it in GitHub Desktop.

Revisions

  1. @dazza5000 dazza5000 revised this gist May 1, 2016. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion circle.yml
    Original 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 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
  2. @dazza5000 dazza5000 revised this gist May 1, 2016. No changes.
  3. @dazza5000 dazza5000 revised this gist May 1, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion circle.yml
    Original file line number Diff line number Diff line change
    @@ -4,7 +4,7 @@

    general:
    artifacts:
    - /home/ubuntu/austin-feeds-me/app/build/outputs/apk/
    - /home/ubuntu/CriminalIntent/app/build/outputs/apk/

    machine:
    environment:
  4. @dazza5000 dazza5000 created this gist Apr 29, 2016.
    31 changes: 31 additions & 0 deletions circle.yml
    Original 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