BayernMessenger/.travis.yml

61 lines
2.1 KiB
YAML
Raw Normal View History

2019-03-13 17:02:12 +00:00
# FTR: Configuration on https://travis-ci.org/vector-im/riotX-android/settings
2019-03-13 16:00:30 +00:00
#
# - Build only if .travis.yml is present -> On
# - Limit concurrent jobs -> Off
# - Build pushed branches -> On (build the branch)
# - Build pushed pull request -> On (build the PR after auto-merge)
#
# - Auto cancel branch builds -> On
# - Auto cancel pull request builds -> On
language: android
jdk: oraclejdk8
sudo: false
notifications:
email: false
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- tools
- platform-tools
# The BuildTools version used by your project
2019-03-15 17:47:33 +00:00
- build-tools-28.0.3
2019-03-13 16:00:30 +00:00
# The SDK version used to compile your project
2019-03-15 17:47:33 +00:00
- android-28
2019-03-13 16:00:30 +00:00
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
# Build with the development SDK
before_script:
# Not necessary for the moment
# - /bin/sh ./set_debug_env.sh
# Just build the project for now
script:
2019-03-19 13:38:15 +00:00
# Build app (assembleGplayRelease assembleFdroidRelease)
# Build Android test (assembleAndroidTest) (disabled for now)
2019-03-19 13:38:15 +00:00
# Code quality (lintGplayRelease lintFdroidRelease)
2019-04-04 09:09:58 +00:00
# Split into two steps because if a task contain Fdroid, PlayService will be disabled
- ./gradlew clean assembleGplayRelease lintGplayRelease --stacktrace
- ./gradlew clean assembleFdroidRelease lintFdroidRelease --stacktrace
2019-03-13 16:00:30 +00:00
# Run unitary test (Disable for now, see https://travis-ci.org/vector-im/riot-android/builds/502504370)
2019-03-19 13:38:15 +00:00
# - ./gradlew testGplayReleaseUnitTest --stacktrace
2019-03-13 16:00:30 +00:00
# Other code quality check
- ./tools/check/check_code_quality.sh
- ./tools/travis/check_pr.sh
# Check that indonesians file are identical. Due to Android issue, the resource folder must be value-in/, and Weblate export data into value-id/.
2019-03-19 13:38:15 +00:00
- diff ./vector/src/main/res/values-id/strings.xml ./vector/src/main/res/values-in/strings.xml