-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
29 lines (29 loc) · 865 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
language: android
env:
matrix:
- ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
before_install:
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
before_script:
- "./ci/wait_for_emulator"
- adb shell input keyevent 82 &
android:
components:
- build-tools-19.1.0
- android-19
- sysimg-19
- extra-android-support
licenses:
- android-sdk-license-5be876d5
- ".*intel.+"
deploy:
provider: releases
file: "./app/build/outputs/apk/app-release-unsigned.apk"
skip_cleanup: true
api_key:
secure: Yv7qc91hNpvFZVjnl1fjA53SfH5kXyJPCabR6IIz2SbExDpstxStSQiUZydIgwrwtXtxliG8irhBdQSfYoYrHREbIZBCX0RkY1QxFpI7r3eLwIUW3SDjfvmbU7HwtYqHqG5gpr1qe81PEj5gFi49YsJYODw9WyaYiRqgE3JFUTs=
on:
repo: nightscout/android-uploader
tags: true
all_branches: true