You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2016/03/30 12:40:29 UTC

cayenne git commit: connecting env vars with build vars

Repository: cayenne
Updated Branches:
  refs/heads/master ef3c93889 -> 3056dd330


connecting env vars with build vars


Project: http://git-wip-us.apache.org/repos/asf/cayenne/repo
Commit: http://git-wip-us.apache.org/repos/asf/cayenne/commit/3056dd33
Tree: http://git-wip-us.apache.org/repos/asf/cayenne/tree/3056dd33
Diff: http://git-wip-us.apache.org/repos/asf/cayenne/diff/3056dd33

Branch: refs/heads/master
Commit: 3056dd33033c70e7819f30a7b0e80bb6ddd2f4e9
Parents: ef3c938
Author: Andrus Adamchik <an...@objectstyle.com>
Authored: Wed Mar 30 13:40:23 2016 +0300
Committer: Andrus Adamchik <an...@objectstyle.com>
Committed: Wed Mar 30 13:40:23 2016 +0300

----------------------------------------------------------------------
 .travis.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cayenne/blob/3056dd33/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index a5814f4..dd1084c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,13 @@
 language: java
 
 env:
-  - cayenneTestConnection=hsql
-  - cayenneTestConnection=h2
-  - cayenneTestConnection=derby
+  - DB_PROFILE=hsql
+  - DB_PROFILE=h2
+  - DB_PROFILE=derby
 
 jdk:
   - oraclejdk8
   - oraclejdk7
 
 script:
-  - mvn verify
\ No newline at end of file
+  - mvn verify -DcayenneTestConnection=$DB_PROFILE
\ No newline at end of file