-
-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (26 loc) · 609 Bytes
/
.travis.yml
File metadata and controls
26 lines (26 loc) · 609 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
language: android
sudo: false
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-28.0.3 # Temporary, used by I2P
- build-tools-29.0.2
- android-28 # Temporary, used by I2P
- android-29
licenses:
- 'android-sdk-license-.+'
- '.*intel.+'
before_install:
- yes | sdkmanager "platforms;android-29"
- chmod +x gradlew
- git submodule update --init --recursive
install:
- ./gradlew
script:
- ./gradlew :app:assembleDebug --stacktrace
- ./gradlew :app:test --stacktrace
- ./gradlew jacocoTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)