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 2020/09/09 10:42:25 UTC

[tinkerpop] branch travis-fix updated (d289e5f -> 92bf855)

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

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


    from d289e5f  Speed up spark tests a bit by ignoring gryo process tests
     new 3828b98  f
     new 92bf855  f

The 2 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:
 .gitignore            |  1 +
 .travis.yml           |  8 ++++++--
 spark-gremlin/pom.xml | 50 +++++++++++++++++++++++++-------------------------
 3 files changed, 32 insertions(+), 27 deletions(-)


[tinkerpop] 02/02: f

Posted by sp...@apache.org.
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

commit 92bf855f73b4ac4397ce18e5f96f55258b43d138
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Sep 9 06:42:03 2020 -0400

    f
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 624e901..1db44b9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,6 +22,7 @@ __pycache__/
 __version__.py
 .glv
 settings.xml
+package-lock.json
 tools/
 [Dd]ebug/
 [Rr]elease/


[tinkerpop] 01/02: f

Posted by sp...@apache.org.
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

commit 3828b9891f70f5af199692aa21b04f2988c87ce2
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Wed Sep 9 06:40:54 2020 -0400

    f
---
 .travis.yml           |  8 ++++++--
 spark-gremlin/pom.xml | 50 +++++++++++++++++++++++++-------------------------
 2 files changed, 31 insertions(+), 27 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index a03dccb..693937c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,7 +58,11 @@ jobs:
       name: "gremlin console"
     - script:
       - "mvn clean install -q -DskipTests -Dci"
-      - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipTests -DskipIntegrationTests=false -Dci"
-      name: "spark"
+      - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipTests -DskipIntegrationTests=false -Dit.test=!SparkGryoSerializerGraphComputerProcessIntegrateTest"
+      name: "spark - core"
+    - script:
+      - "mvn clean install -q -DskipTests -Dci"
+      - "travis_wait 60 mvn verify -pl :spark-gremlin -DskipTests -DskipIntegrationTests=false -Dit.test=SparkGryoSerializerGraphComputerProcessIntegrateTest"
+      name: "spark - gryo"
     - script: "docker/build.sh"
       name: "docker"
diff --git a/spark-gremlin/pom.xml b/spark-gremlin/pom.xml
index b8dd58a..78346d6 100644
--- a/spark-gremlin/pom.xml
+++ b/spark-gremlin/pom.xml
@@ -405,30 +405,30 @@
         </plugins>
     </build>
 
-    <profiles>
-        <profile>
-            <!-- Continuous Integration - skips gryo process tests as we push the time limit of builds in Travis -->
-            <id>ci</id>
-            <activation>
-                <activeByDefault>false</activeByDefault>
-                <property>
-                    <name>ci</name>
-                </property>
-            </activation>
+<!--    <profiles>-->
+<!--        <profile>-->
+<!--            &lt;!&ndash; Continuous Integration - skips gryo process tests as we push the time limit of builds in Travis &ndash;&gt;-->
+<!--            <id>ci</id>-->
+<!--            <activation>-->
+<!--                <activeByDefault>false</activeByDefault>-->
+<!--                <property>-->
+<!--                    <name>ci</name>-->
+<!--                </property>-->
+<!--            </activation>-->
 
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-failsafe-plugin</artifactId>
-                        <configuration>
-                            <excludes>
-                                <exclude>SparkGryoSerializerGraphComputerProcessIntegrateTest.java</exclude>
-                            </excludes>
-                        </configuration>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+<!--            <build>-->
+<!--                <plugins>-->
+<!--                    <plugin>-->
+<!--                        <groupId>org.apache.maven.plugins</groupId>-->
+<!--                        <artifactId>maven-failsafe-plugin</artifactId>-->
+<!--                        <configuration>-->
+<!--                            <excludes>-->
+<!--                                <exclude>SparkGryoSerializerGraphComputerProcessIntegrateTest.java</exclude>-->
+<!--                            </excludes>-->
+<!--                        </configuration>-->
+<!--                    </plugin>-->
+<!--                </plugins>-->
+<!--            </build>-->
+<!--        </profile>-->
+<!--    </profiles>-->
 </project>