Skip to content

Commit

Permalink
Travis: try to ignore errors in non-essential parts of the script
Browse files Browse the repository at this point in the history
  • Loading branch information
sfalexrog committed Aug 3, 2017
1 parent 0abd9b4 commit f1805c8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ env:
- BUILD_ARCH_LIST='arm64-v8a'
before_install:
- pip install --user transifex-client
- printf "[https://www.transifex.com]\nhostname = https://www.transifex.com\npassword = ${TRAVIS_TRANSIFEX_API}\nusername = api\n" > ~/.transifexrc
- pushd app/src/main/jni/OpenXcom && tx pull -a && bin/translations_merge.sh && popd
- openssl enc -d -aes-256-cbc -in private.enc -out private.7z -md sha256 -pass $TRAVIS_PRIVATE_PASS
- 7z x private.7z > /dev/null
- printf "[https://www.transifex.com]\nhostname = https://www.transifex.com\npassword = ${TRAVIS_TRANSIFEX_API:-badpassword}\nusername = api\n" > ~/.transifexrc
- pushd app/src/main/jni/OpenXcom
- tx pull -a || true
- bin/translations_merge.sh && popd
- openssl enc -d -aes-256-cbc -in private.enc -out private.7z -md sha256 -pass $TRAVIS_PRIVATE_PASS || true
- 7z x private.7z > /dev/null || true
- yes | ${ANDROID_HOME}/tools/bin/sdkmanager --update
- wget --timeout=120 --quiet https://dl.google.com/android/repository/android-ndk-r15c-linux-x86_64.zip -O ndk.zip
- sha1sum ndk.zip | grep 0bf02d4e8b85fd770fd7b9b2cdec57f9441f27a2
Expand Down

0 comments on commit f1805c8

Please sign in to comment.