Twidere-App-Android-Twitter.../.travis.yml

56 lines
1.4 KiB
YAML
Raw Normal View History

language: android
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
2015-03-16 06:48:09 +01:00
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.2
# The SDK version used to compile your project
- android-23
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
# Specify at least one system image,
# if you need to run emulator(s) during your tests
# - sys-img-armeabi-v7a-android-19
# - sys-img-x86-android-17
2015-11-22 15:55:29 +01:00
sudo: false
2015-03-17 10:34:15 +01:00
2015-11-26 03:37:07 +01:00
jdk:
- oraclejdk8
2015-08-16 15:16:05 +02:00
env:
global:
MALLOC_ARENA_MAX=2
2015-11-26 15:00:03 +01:00
GRADLE_OPTS=-Xmx1024m -Dorg.gradle.parallel=false
2015-08-16 15:16:05 +02:00
2015-08-13 14:59:03 +02:00
addons:
apt:
packages:
- python2.7
- libmagic1
2016-02-08 15:04:07 +01:00
- patch
2016-02-08 15:04:07 +01:00
#cache:
# directories:
# - $HOME/.local/opt
2015-11-26 03:37:07 +01:00
2015-11-25 14:13:11 +01:00
before_install:
- export PATH=$HOME/.local/bin:$PATH
2016-02-08 15:26:50 +01:00
- openssl aes-256-cbc -K $encrypted_9b8203f9524d_key -iv $encrypted_9b8203f9524d_iv -in travis/configs/twidere_private_config.tar.gz.enc -out travis/configs/twidere_private_config.tar.gz -d
2015-08-13 14:59:03 +02:00
2016-02-08 15:04:07 +01:00
before_script:
2016-02-08 15:26:50 +01:00
# Extracts build configs into source tree
- tar zxf travis/configs/twidere_private_config.tar.gz
2016-02-08 15:04:07 +01:00
# Validate if patches work
- patch --dry-run -d twidere < twidere/patches/remove_closed_source_dependencies.patch
2015-11-26 15:00:03 +01:00
script: ./gradlew build --no-daemon --stacktrace