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:45:23 UTC

[flink] branch release-1.8 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 release-1.8
in repository https://gitbox.apache.org/repos/asf/flink.git


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

commit 330516c08b33c8ca9c29563a8406e1a89c9e39ae
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 c0f70a5..18e6b1b 100755
--- a/tools/travis_controller.sh
+++ b/tools/travis_controller.sh
@@ -59,7 +59,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=$?