2014-09-24 22:14:04 +02:00
|
|
|
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
|
2014-09-24 22:14:04 +02:00
|
|
|
|
|
|
|
# The BuildTools version used by your project
|
2015-11-25 08:33:18 +01:00
|
|
|
- build-tools-23.0.2
|
2014-09-24 22:14:04 +02:00
|
|
|
|
|
|
|
# The SDK version used to compile your project
|
2015-08-28 12:16:41 +02:00
|
|
|
- android-23
|
2014-09-24 22:14:04 +02:00
|
|
|
|
|
|
|
# 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-08-13 14:59:03 +02:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2016-02-08 15:30:26 +01:00
|
|
|
- tar
|
|
|
|
- gzip
|
2016-02-08 15:04:07 +01:00
|
|
|
- patch
|
2015-09-21 12:15:42 +02:00
|
|
|
|
2015-11-25 14:13:11 +01:00
|
|
|
before_install:
|
2015-09-21 12:15:42 +02:00
|
|
|
- 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
|
2016-02-08 15:30:26 +01:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
provider: releases
|
2016-02-10 15:23:40 +01:00
|
|
|
prerelease: true
|
2016-02-08 15:30:26 +01:00
|
|
|
api_key:
|
|
|
|
secure: WKtKwda3hegqO9QVujdonNoL2ESJUR80WHNq/13wDsbCABo/GNnuqHNYZmml3wAifEKKeCEYfNZRUuHQ8eHs54Lj5BlGRX5i+1LrGhhgnVFQgmrhIv4RJuVQ663kDEh+Jwo4vowJ2mxNDvLvOhfZwxjULPDiknqy6u5PyW3id5M=
|
|
|
|
file_glob: true
|
|
|
|
file: '**/*-release.apk'
|
|
|
|
on:
|
|
|
|
repo: TwidereProject/Twidere-Android
|
|
|
|
tags: true
|