-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1e5bbb
commit 65ce0cd
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
language: android | ||
|
||
jdk: | ||
- oraclejdk8 | ||
|
||
android: | ||
components: | ||
# Uncomment the lines below if you want to | ||
# use the latest revision of Android SDK Tools | ||
- tools | ||
- platform-tools | ||
- tools | ||
# The BuildTools version used by your project | ||
- build-tools-27.0.3 | ||
- build-tools-26.0.2 | ||
# The SDK version used to compile your project | ||
- android-27 | ||
- android-26 | ||
- android-21 | ||
# Additional components | ||
- extra-android-m2repository | ||
- add-on | ||
- extra | ||
# Specify at least one system image, | ||
# if you need to run emulator(s) during your tests | ||
- sys-img-armeabi-v7a-android-21 | ||
licenses: | ||
- 'android-sdk-preview-license-52d11cd2' | ||
- 'android-sdk-preview-license-.+' | ||
- 'android-sdk-license-.+' | ||
- 'google-gdk-license-.+' | ||
|
||
before_install: | ||
# Install SDK license so Android Gradle plugin can install deps. | ||
- yes | sdkmanager "platforms;android-27" | ||
- mkdir "$ANDROID_HOME/licenses" || true | ||
- echo "8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license" | ||
|
||
script: | ||
- ./gradlew clean assemble | ||
- ./gradlew test | ||
- ./gradlew :dispatch:connectedAndroidTest -PdisablePreDex | ||
- ./gradlew :dispatchretrofit:connectedAndroidTest -PdisablePreDex | ||
- ./gradlew :dispatchandroid:connectedAndroidTest -PdisablePreDex | ||
- ./gradlew assembleAndroidTest | ||
|
||
|
||
# Emulator Management: Create, Start and Wait | ||
before_script: | ||
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a | ||
- emulator -avd test -no-window & | ||
- android-wait-for-emulator | ||
- adb shell input keyevent 82 & | ||
|
||
before_cache: | ||
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock | ||
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/ | ||
|
||
cache: | ||
directories: | ||
- $HOME/.gradle/caches/ | ||
- $HOME/.gradle/wrapper/ | ||
- $HOME/.android/build-cache | ||
|
||
notifications: | ||
email: false | ||
|
||
sudo: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters