-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
34 lines (29 loc) · 854 Bytes
/
.travis.yml
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
32
33
34
sudo: true
language: android
jdk:
# the release build infrastructure uses OpenJDK from Debian
- openjdk8
# many developers use the Oracle JDK
# (sometimes Travis cannot reliably start the emulator with these)
- oraclejdk8
before_install:
- sudo add-apt-repository ppa:guardianproject/ppa -y
- sudo apt-get update -qq
- sudo apt-get install -qq strip-nondeterminism libarchive-zip-perl ant ant-optional
android:
components:
- tools
- platform-tools
- build-tools-24.0.0
- android-23
licenses:
# only approve the free software licenses
- 'android-sdk-preview-license-52d11cd2'
- 'android-sdk-license-.+'
script:
- ./gradlew jarRelease
- for f in build/libs/*.*; do sha256sum $f; done
# run release build script
- ./make-release-build
after_failure:
- find * -name lint-results.xml | xargs cat