diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-03-21 09:34:37 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-03-22 12:37:51 +0100 |
commit | 94af8db61639a8ebba40271c4e52382935b7d71d (patch) | |
tree | 42567c77b85728dc6f4d54523e665f61dd601ac4 | |
parent | 10527bb9e70955a3d0fe6f65f82133eb8e6bdff1 (diff) | |
download | sonarqube-94af8db61639a8ebba40271c4e52382935b7d71d.tar.gz sonarqube-94af8db61639a8ebba40271c4e52382935b7d71d.zip |
Complete and sanitize QA pipeline
- do not execute QA on dogfood/* feature branches
- run non-postgreSQL tests on release branches only
- run HA tests on release and dogfood-on-next branches only
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 6886fd62b68..03194221a8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,10 @@ jdk: oraclejdk8 script: ./travis.sh dist: trusty +branches: + except: + - /^dogfood\/.*$/ + env: - TARGET=BUILD - TARGET=WEB_TESTS |