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:26 UTC

[tinkerpop] 01/02: f

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>