Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. script:
  2. - 'if [ "$TRAVIS_EVENT_TYPE" == "push" ]; then
  3. mvn clean install;
  4. else
  5. mvn clean install -P test;
  6. fi'
  7.  
  8. script:
  9. - 'if [ "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_BRANCH" =~ ^(feature|bugfix)]; then
  10. mvn clean install;
  11. else
  12. mvn clean install -P test;
  13. fi'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement