-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
48 lines (42 loc) · 1.74 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: android
sudo: required # toggle sudo mode (should be a bit faster)
android:
components:
# The BuildTools version used by your project
- build-tools-27.0.3
# The SDK version used to compile your project
- android-27
# The SDK version used by the system image
- android-22
# The system image, to run an emulator during the tests
- sys-img-armeabi-v7a-android-22
# Uncomment if you are getting install timeouts
env:
global:
- ADB_INSTALL_TIMEOUT=8
notifications:
email: false # disable email notifications
# For some reason Travis can't accept the license for 27 automatically...
before_install:
- yes | sdkmanager "platforms;android-27"
- chmod +x gradlew
before_script:
# Emulator Management: Create, Start and Wait: put the android version you chose for the emulator
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell settings put global window_animation_scale 0 &
- adb shell settings put global transition animation_scale 0 &
- adb shell settings put global animator_duration_scale 0 &
# Set up Code Climate test reporter
- adb shell input keyevent 82 &
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- travis_retry ./gradlew connectedCheck jacocoTestReport --info
after_script:
# Report test coverage to Code Climate
- export JACOCO_SOURCE_PATH=app/src/main/java/
- ./cc-test-reporter format-coverage ./app/build/reports/jacoco/jacocoTestReport/jacocoTestReport.xml --input-type jacoco
- ./cc-test-reporter upload-coverage