You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 878B

1234567891011121314151617181920212223242526272829303132333435
  1. language: java
  2. sudo: false
  3. install: true
  4. jdk: oraclejdk8
  5. script: ./travis.sh
  6. env:
  7. - TARGET=CI
  8. - TARGET=IT IT_CATEGORY=Category1
  9. - TARGET=IT IT_CATEGORY=Category2
  10. - TARGET=IT IT_CATEGORY=Category3
  11. - TARGET=IT IT_CATEGORY=Category4
  12. - TARGET=IT IT_CATEGORY=Category5
  13. - TARGET=WEB
  14. matrix:
  15. fast_finish: true
  16. cache:
  17. directories:
  18. - $HOME/.m2/repository
  19. - $HOME/.sonar
  20. - 'server/sonar-web/node'
  21. - 'server/sonar-web/node_modules'
  22. before_cache:
  23. # remove all the artifacts (JAR, ZIP) that are installed in local repo because of mvn deploy
  24. - rm -rf $HOME/.m2/repository/org/sonarsource/sonarqube
  25. notifications:
  26. email: false
  27. webhooks:
  28. - secure: "CrwnSt40WNegJOkgDOaCwUwP9fCgx68pYQWtcZnj4+bRF7kFuFI+EUFuf7G29oPOf9CjmFVvZ+mS/ZJ9AqtjfWh/Q9f4Zsv9BBfOmTgUcidYp8+hQljeesEXwi2Mqfa2JeRysje4xu2p8b52h+apbbQ2Y2FQsP4uwmj1LEpP32U="
  29. on_start: always