- Added CI smoke build config that spawns a build for pull-requests - Removed extra translations that have no base strings anymore - Added skip MissingTranslation option to lint as there are missing strings that are not filled in Transifex
31 lines
547 B
YAML
31 lines
547 B
YAML
language: android
|
|
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
env:
|
|
global:
|
|
# install timeout in minutes (2 minutes by default)
|
|
- ADB_INSTALL_TIMEOUT=8
|
|
|
|
android:
|
|
components:
|
|
# use the latest revision of Android SDK Tools
|
|
- platform-tools
|
|
- tools
|
|
|
|
# The BuildTools version used
|
|
- build-tools-24.0.2
|
|
|
|
# The SDK version used
|
|
- android-24
|
|
|
|
before_cache:
|
|
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
|
cache:
|
|
directories:
|
|
- $HOME/.gradle/caches/
|
|
- $HOME/.gradle/wrapper/
|
|
|
|
script:
|
|
- ./gradlew --info assembleRelease |