Build preview branches in Travis. Publish to bintray only from these branches

This commit is contained in:
Alexey Andreev 2017-02-16 22:25:14 +03:00
parent 5a8c3a9dae
commit 60f8633acb

View File

@ -8,6 +8,7 @@ branches:
only:
- master
- /^release-.+$/
- /^preview-.+/
env:
- MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=256m"
before_install:
@ -23,7 +24,7 @@ script: >
-Dteavm.junit.optimized=true \
-Dteavm.junit.minified=true
after_success: >
if [ "${TRAVIS_PULL_REQUEST:-false}" != "false" ]; then
if [ "${TRAVIS_PULL_REQUEST:-false}" != "false" ] && [ $TRAVIS_BRANCH == preview-* ]; then
mvn deploy --settings travis-settings.xml -P deploy-to-bintray
fi
after_script: