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/06/07 14:23:41 UTC

[tinkerpop] branch travis-test created (now 3de6ba7)

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

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


      at 3de6ba7  Add build naming and gremlin application integration tests to travis CTR

This branch includes the following new commits:

     new 3de6ba7  Add build naming and gremlin application integration tests to travis CTR

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[tinkerpop] 01/01: Add build naming and gremlin application integration tests to travis CTR

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3de6ba7983d3adad3e8568081f4e01a0f920851c
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Fri Jun 7 10:22:55 2019 -0400

    Add build naming and gremlin application integration tests to travis CTR
---
 .travis.yml | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2d7ec4d..bb4f105 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,11 +29,21 @@ before_install:
 
 jobs:
   include:
-    - script: "mvn clean install -Dci --batch-mode -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
+    - stage: "unit tests"
+      script: "mvn clean install -Dci --batch-mode -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn"
+      name: "mvn clean install"
+    - stage: "integration tests"
     - script: "touch gremlin-dotnet/src/.glv && touch gremlin-dotnet/test/.glv && mvn clean install -q -DskipTests && mvn verify -pl :gremlin-dotnet,:gremlin-dotnet-tests -P gremlin-dotnet"
+      name: ".net"
     - script: "touch gremlin-python/.glv && mvn clean install -q -DskipTests && mvn verify -pl gremlin-python"
+      name: "python"
     - script: "mvn clean install -q -DskipTests && mvn verify -pl :gremlin-javascript"
+      name: "javascript"
+    - script: "mvn clean install -q -DskipTests && mvn verify -pl :gremlin-server,:gremlin-console -DskipIntegrationTests=false"
+      name: "gremlin server/console"
     - script:
       - "mvn clean install -q -DskipTests"
       - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipIntegrationTests=false"
-    - script: "docker/build.sh"
+      name: "spark"
+    - stage: "docker"
+      script: "docker/build.sh"