forked from clockbyte/admobadapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (52 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
language: android
jdk:
- oraclejdk8
sudo: false
addons:
apt:
packages:
- oracle-java8-installer
before_install:
- chmod +x gradlew
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
android:
components:
- tools # to get the new `repository-11.xml`
- tools # to install Android SDK tools 25.1.x (x = 6 right now)
- build-tools-26.0.1
- android-24
- android-26
- platform-tools
- extra-android-support
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armeabi-v7a-android-24
# - sys-img-x86-android-24
env:
global:
# install timeout in minutes (2 minutes by default)
- ADB_INSTALL_TIMEOUT=10
# Emulator Management: Create, Start and Wait
before_script:
- android list target
- echo no | android create avd --force -n test -t android-24 --abi armeabi-v7a
- emulator -avd test -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- ./gradlew build connectedCheck
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7346b57d8c284592f2bb
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always