Skip to content
Snippets Groups Projects
Commit 1463ef39 authored by Tim Molter's avatar Tim Molter
Browse files

improved travis file [ci skip]

parent 4fd07dd8
Branches
Tags
No related merge requests found
language: java
before_install: "git clone -b travis `git config --get remote.origin.url` target/travis"
script: "[ ${TRAVIS_PULL_REQUEST} = 'false' ] && mvn clean deploy --settings target/travis/settings.xml || mvn clean verify --settings target/travis/settings.xml"
script: "
if [ ${TRAVIS_PULL_REQUEST} = 'false' ];
then
mvn -Dmaven.test.skip=true clean deploy --settings target/travis/settings.xml;
else
mvn clean verify --settings target/travis/settings.xml;
fi"
# whitelist
branches:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment