forked from furkanaskin/Weatherapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (38 loc) · 859 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
35
36
37
38
39
40
41
42
43
44
---
language: android
jdk: oraclejdk8
sudo: false
os: linux
dist: trusty
branches:
only:
- master
- dev
env:
global:
- ANDROID_TARGET=android-28
- ANDROID_ABI=armeabi-v7a
android:
components:
- tools
- platform-tools
- build-tools-29.0.1
- android-29
- extra-google-m2repository
- extra-android-m2repository
- extra-android-support
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armeabi-v7a-android-16
- sys-img-armeabi-v7a-android-21
- sys-img-armeabi-v7a-android-22
- sys-img-armeabi-v7a-android-25
licenses:
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
- 'android-sdk-preview-license-.+'
script:
- ./gradlew runUnitTests
- ./gradlew connectedCheck
after_success:
- bash <(curl -s https://codecov.io/bash)