You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2019/11/15 15:47:15 UTC

[tinkerpop] branch travis-fix updated: Break up server/console test builds for travis

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch travis-fix
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/travis-fix by this push:
     new 23ce610  Break up server/console test builds for travis
23ce610 is described below

commit 23ce610179e0bf3da8deb7a56973d9a30f78c4c7
Author: stephen <sp...@gmail.com>
AuthorDate: Fri Nov 15 10:46:36 2019 -0500

    Break up server/console test builds for travis
---
 .travis.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index e5f8621..58aeecd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -41,8 +41,12 @@ jobs:
       name: "javascript"
     - script:
       - "mvn clean install -q -DskipTests"
-      - "travis_wait 60 mvn verify -pl :gremlin-server,:gremlin-console -DskipIntegrationTests=false"
-      name: "gremlin server/console"
+      - "travis_wait 60 mvn verify -pl :gremlin-server -DskipIntegrationTests=false"
+      name: "gremlin server"
+    - script:
+        - "mvn clean install -q -DskipTests"
+        - "travis_wait 60 mvn verify -pl :gremlin-console -DskipIntegrationTests=false"
+      name: "gremlin console"
     - script:
       - "mvn clean install -q -DskipTests"
       - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipIntegrationTests=false"