added extract signing config script

This commit is contained in:
Mariotaku Lee 2015-11-26 20:18:37 +08:00
parent af6afc67a7
commit f04386693b
2 changed files with 7 additions and 0 deletions

View File

@ -41,6 +41,7 @@ cache:
- $HOME/.local/opt
before_install:
- ./scripts/extract_signing_config.sh
- ./scripts/install_android_ndk.sh
- export PATH=$HOME/.local/bin:$PATH
- pip install -r ./configs/requirements.txt --user

View File

@ -0,0 +1,6 @@
#!/bin/bash
if [ -n ${SIGNING_CONFIG} ]; then
echo ${SIGNING_CONFIG} | base64 -d | tar zxf -
echo 'Extracted signing config'
fi