-
Notifications
You must be signed in to change notification settings - Fork 32
/
.travis.yml
36 lines (32 loc) · 925 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
language: android
jdk: oraclejdk8
# Turn off caching to avoid any caching problems
cache: false
# Don't use the Travis Container-Based Infrastructure - See #476
sudo: true
env:
global:
- ANDROID_API_LEVEL=28
- ANDROID_BUILD_TOOLS_VERSION=28.0.3
- ADB_INSTALL_TIMEOUT=20 # minutes (2 minutes by default - see #247)
android:
components:
- platform-tools
- tools
- build-tools-$ANDROID_BUILD_TOOLS_VERSION
- android-$ANDROID_API_LEVEL
# Google Play Services
- extra-google-google_play_services
# Support library
- extra-android-support
# Latest artifacts in local repository
- extra-google-m2repository
- extra-android-m2repository
before_install:
- yes | sdkmanager "platforms;android-28"
before_script:
- chmod +x ./gradlew
# Only run tests on the main two OneBusAway brand flavors
script:
# - ./gradlew clean
- ./gradlew compileDebugKotlin --stacktrace