You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2019/07/19 08:44:32 UTC

[flink] branch master updated: [FLINK-12578][build] Use fallback unsafe MapR repository

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

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 1869c28  [FLINK-12578][build] Use fallback unsafe MapR repository
1869c28 is described below

commit 1869c2892785bd471c2ca8b27851f000fd489f8b
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Fri Jul 19 10:43:48 2019 +0200

    [FLINK-12578][build] Use fallback unsafe MapR repository
---
 tools/travis_controller.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/travis_controller.sh b/tools/travis_controller.sh
index 80760aa..2649fe6 100755
--- a/tools/travis_controller.sh
+++ b/tools/travis_controller.sh
@@ -90,7 +90,8 @@ EXIT_CODE=0
 
 # Run actual compile&test steps
 if [ $STAGE == "$STAGE_COMPILE" ]; then
-	MVN="mvn clean install -nsu -Dflink.convergence.phase=install -Pcheck-convergence -Dflink.forkCount=2 -Dflink.forkCountTestPackage=2 -Dmaven.javadoc.skip=true -B -DskipTests $PROFILE"
+    # We use -Punsafe-mapr-repo since the https version fails on Travis for some reason.
+	MVN="mvn clean install -nsu -Punsafe-mapr-repo -Dflink.convergence.phase=install -Pcheck-convergence -Dflink.forkCount=2 -Dflink.forkCountTestPackage=2 -Dmaven.javadoc.skip=true -B -DskipTests $PROFILE"
 	$MVN
 	EXIT_CODE=$?