travis-ci: remove defensive checks

This commit is contained in:
Paul Campbell 2017-05-29 14:46:59 +01:00
parent 02087630c9
commit 8c5a6e06fd
2 changed files with 2 additions and 8 deletions

View file

@ -1,7 +1,3 @@
#!/usr/bin/env bash #!/usr/bin/env bash
## Only send coveralls reports from Travis-CI. Some CIs, like Shippable, lie by setting TRAVIS=true. ./mvnw --projects builder,plugin test jacoco:report coveralls:report
## Currently, Shippable, does not set TRAVIS_LANGUAGE, but Travis-CI does.
if [ "$TRAVIS_LANGUAGE" = "java" ];then
./mvnw --projects builder,plugin test jacoco:report coveralls:report
fi

View file

@ -1,8 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
## Only deploy from Travis-CI. Some CIs, like Shippable, lie by setting TRAVIS=true. if [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then
## Currently, Shippable, does not set TRAVIS_LANGUAGE, but Travis-CI does.
if [ "$TRAVIS_LANGUAGE" = "java" ] && [ "$TRAVIS_BRANCH" = 'master' ] && [ "$TRAVIS_PULL_REQUEST" == 'false' ]; then
openssl aes-256-cbc -K $encrypted_efec3258f55d_key -iv $encrypted_efec3258f55d_iv \ openssl aes-256-cbc -K $encrypted_efec3258f55d_key -iv $encrypted_efec3258f55d_iv \
-in travis-ci/codesigning.asc.enc -out travis-ci/codesigning.asc -d -in travis-ci/codesigning.asc.enc -out travis-ci/codesigning.asc -d
gpg --batch --fast-import travis-ci/codesigning.asc gpg --batch --fast-import travis-ci/codesigning.asc