fixed travis config

This commit is contained in:
Mariotaku Lee 2017-04-26 01:15:41 +08:00
parent f6123073ab
commit c61bd8e865
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
5 changed files with 15 additions and 8 deletions

View File

@ -47,7 +47,7 @@ cache:
- $HOME/.m2/
before_install:
- 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
- ./travis/scripts/decode_private_configs.sh
install:
- ./travis/scripts/fetch_private_files.sh

View File

@ -0,0 +1,7 @@
#!/bin/bash
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
exit 0
fi
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

View File

@ -1,7 +1,7 @@
#!/bin/bash
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
return 0
exit 0
fi
# Extracts build configs into source tree

View File

@ -1,7 +1,7 @@
#!/bin/bash
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
return 0
exit 0
fi
test -f twidere/src/google/AndroidManifest.xml

View File

@ -1,7 +1,7 @@
#!/bin/bash
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
return 0
exit 0
fi
curl 'https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh' -o travis/scripts/dropbox_uploader.sh