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 16:47:14 UTC

[tinkerpop] branch master updated (acc9c3c -> 7628a8e)

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

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


    from acc9c3c  Add name and logo for 3.5.0 CTR
     new d3a0364  Add build naming and gremlin application integration tests to travis CTR
     new e426bef  Merge branch 'tp33' into tp34
     new 7628a8e  Merge branch 'tp34'

The 3 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.


Summary of changes:
 .travis.yml | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)


[tinkerpop] 03/03: Merge branch 'tp34'

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

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

commit 7628a8ef0c408cc141f56d912d0aad03a8ff8086
Merge: acc9c3c e426bef
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Fri Jun 7 12:47:00 2019 -0400

    Merge branch 'tp34'

 .travis.yml | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)


[tinkerpop] 02/03: Merge branch 'tp33' into tp34

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

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

commit e426beffae83ec5de9f902a3596d28b93aa654ff
Merge: 50b0fd3 d3a0364
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Fri Jun 7 12:46:53 2019 -0400

    Merge branch 'tp33' into tp34

 .travis.yml | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)


[tinkerpop] 01/03: 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 master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit d3a0364d386b847747dcfb6c4b622c08ba7a709a
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 | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2d7ec4d..6a668e6 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"
-    - 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"
+    - 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"