diff options
author | David Gageot <david@gageot.net> | 2015-06-03 11:41:53 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2015-06-03 18:02:47 +0200 |
commit | 8f9e5e843e070afdf05cf0c9b4f1479e45e25542 (patch) | |
tree | 1f44564d66cb2aa518d3b90f6f618b2327a3b17b /.travis.yml | |
parent | 35f206a6cefc849aa105769c2545d30257188de4 (diff) | |
download | sonarqube-8f9e5e843e070afdf05cf0c9b4f1479e45e25542.tar.gz sonarqube-8f9e5e843e070afdf05cf0c9b4f1479e45e25542.zip |
Run CI on h2/mysql/postgres
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3cd109e4593..b3ab2939fe7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,12 +5,19 @@ install: true jdk: - oraclejdk8 +env: + - DATABASE=H2 + - DATABASE=POSTGRES + - DATABASE=MYSQL + script: - - mvn verify -B -e -V + - ./travis.sh cache: directories: - '$HOME/.m2/repository' +before_cache: + - 'rm -rf $HOME/.m2/repository/org/codehaus/sonar' notifications: email: false |