blob: 4c5d72b2cefcb453812dbf49a9c6ce6aadd405af (
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
|
language: android
jdk: oraclejdk8
android:
components:
- platform-tools
- tools
- build-tools-23.0.3
- build-tools-24.0.2
- android-23
- android-24
- 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"
|