-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (31 loc) · 823 Bytes
/
.travis.yml
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
language: android
jdk: openjdk8
android:
components:
- tools
- platform-tools
- tools
- build-tools-26.0.2
- build-tools-27.0.1
- build-tools-28.0.2
- build-tools-28.0.3
- android-29
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
licenses:
- 'android-sdk-license-.+'
before_install:
- yes | sdkmanager "platforms;android-28"
script:
- ./gradlew clean build jacocoTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)
before_deploy:
- openssl aes-256-cbc -K $encrypted_022658120507_key -iv $encrypted_022658120507_iv -in dist/googleplay-developer-key.json.enc -out dist/googleplay-developer-key.json -d
deploy:
skip_cleanup: true
provider: script
script: ./gradlew publishBeta
on:
tags: true