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 885c367144486781123287f90595c682acf77144 Author: Vladimir Sitnikov <[email protected]> AuthorDate: Mon Nov 11 00:24:30 2019 +0300 Skip slow Calcite tests --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4739c97..7709e79 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,11 +26,12 @@ 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: + - ./mvnw 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 +46,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
