aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 6c72f1dc6249d33932de0af456034b81306d4e63 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: android
jdk: oraclejdk8
android:
    components:
        - platform-tools
        - tools
        - build-tools-23.0.3
        - build-tools-24.0.2
        - build-tools-25.0.2
        - android-23
        - android-24
        - android-25
        - extra-google-m2repository
        - extra-android-m2repository

licenses:
    - 'android-sdk-preview-license-.+'
    - 'android-sdk-license-.+'
    - 'google-gdk-license-.+'

cache:
  directories:
    - $HOME/.gradle

 # ok no tests for now
 # - sys-img-x86-android-22

before_script:
    - GRADLE_OPTS="-Xms40m -Xmx3g -XX:MaxPermSize=3g"

script: "./gradlew clean build test -Dpre-dex=false"