You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by vl...@apache.org on 2019/11/10 22:10:41 UTC

[calcite-avatica] 02/03: Skip slow Calcite tests

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

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-avatica.git

commit a68d2979fd43e0f6b307d3be3701ebe03ee6487e
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Mon Nov 11 00:24:30 2019 +0300

    Skip slow Calcite tests
---
 .travis.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 4739c97..b554baa 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,11 +26,13 @@ matrix:
     - name: Calcite/master
       install:
         - ./gradlew publishToMavenLocal -PskipJavadoc -Pcalcite.avatica.version=42.0
-      script:
         - cd ..
         - git clone --depth 10000 https://github.com/apache/calcite.git
         - cd calcite
-        - mvn install -Davatica.version=42.0-SNAPSHOT
+        - ./mvnw install -Davatica.version=42.0-SNAPSHOT -Dcheckstyle.skip -DskipTests=true -Dmaven.javadoc.skip=true -Djavax.net.ssl.trustStorePassword=changeit -B -V
+      script:
+        - cd calcite
+        - mvn test -Davatica.version=42.0-SNAPSHOT -DskipSlowTests -Dcheckstyle.skip -Dsurefire.useFile=false -Dsurefire.threadCount=1 -Dsurefire.perCoreThreadCount=false -Djavax.net.ssl.trustStorePassword=changeit -Dmaven.javadoc.skip=true
 
 branches:
   only:
@@ -45,6 +47,7 @@ git:
 before_cache:
   - rm -f  $HOME/.gradle/caches/modules-2/modules-2.lock
   - rm -fr $HOME/.gradle/caches/*/plugin-resolution/
+  - rm -fr $HOME/.m2/repository/org/apache/calcite
 cache:
   directories:
     - $HOME/.m2