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 2016/02/26 13:17:28 UTC

[18/19] incubator-tinkerpop git commit: Disabled full build of appveyor until it is stable.

Disabled full build of appveyor until it is stable.

See https://issues.apache.org/jira/browse/TINKERPOP-1179 CTR


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/10df181f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/10df181f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/10df181f

Branch: refs/heads/master
Commit: 10df181f1254889d502c32df204dfd95d83ced94
Parents: 5126697
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Feb 26 07:10:57 2016 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Feb 26 07:10:57 2016 -0500

----------------------------------------------------------------------
 appveyor.yml          |  2 +-
 spark-gremlin/pom.xml | 30 ++++++++++++++++++------------
 2 files changed, 19 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/10df181f/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
index fe00740..452584c 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -11,4 +11,4 @@ install:
   - cmd: refreshenv
 
 build_script:
-  - mvn clean install -B -Dci -fae -Pappveyor
+  - mvn clean validate -B -Dci -fae -Dappveyor

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/10df181f/spark-gremlin/pom.xml
----------------------------------------------------------------------
diff --git a/spark-gremlin/pom.xml b/spark-gremlin/pom.xml
index fb7b2f7..6e4ab17 100644
--- a/spark-gremlin/pom.xml
+++ b/spark-gremlin/pom.xml
@@ -396,21 +396,27 @@
 
   <profiles>
     <profile>
-      <id>appveyor</id>
-      <build>
-        <plugins>
-          <plugin>
+        <id>appveyor</id>
+        <activation>
+            <activeByDefault>false</activeByDefault>
+            <property>
+                <name>appveyor</name>
+            </property>
+        </activation>
+    <build>
+    <plugins>
+        <plugin>
             <artifactId>maven-surefire-plugin</artifactId>
             <configuration>
-              <excludes>
-                <exclude>**/SparkHadoopGremlinTest*</exclude>
-                <exclude>**/SparkGraphComputerGroovyProcessIntegrateTest*</exclude>
-                <exclude>**/SparkGraphComputerProcessIntegrateTest*</exclude>
-                <exclude>**/GryoSerializerIntegrateTest*</exclude>
-              </excludes>
+                <excludes>
+                    <exclude>**/SparkHadoopGremlinTest*</exclude>
+                    <exclude>**/SparkGraphComputerGroovyProcessIntegrateTest*</exclude>
+                    <exclude>**/SparkGraphComputerProcessIntegrateTest*</exclude>
+                    <exclude>**/GryoSerializerIntegrateTest*</exclude>
+                </excludes>
             </configuration>
-          </plugin>
-        </plugins>
+        </plugin>
+    </plugins>
       </build>
     </profile>
   </profiles>