From 22a7f7b8ad7f3767c06cb9269425f3935587129c Mon Sep 17 00:00:00 2001 From: Les Vogel Date: Fri, 17 Feb 2017 17:07:43 -0800 Subject: [PATCH 1/3] try 600m 600m mx debugging info --- travis.sh | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/travis.sh b/travis.sh index 4d9af1a8ce7..7e147fc4ccd 100755 --- a/travis.sh +++ b/travis.sh @@ -65,9 +65,22 @@ common_travis_dir="$(travis_changed_files_parent)" [ -z "$common_travis_dir" ] || pushd "$common_travis_dir" +# Temporary +echo "****************************" +echo "****************************" +pwd +echo "****************************" +env +echo "****************************" +ls +echo "****************************" +ls ~ +echo "****************************" +echo "****************************" + # Give Maven a bit more memory -export MAVEN_OPTS='-XX:+PrintFlagsFinal -Xmx2g -Xms512m' -./mvnw --batch-mode clean verify -e -DskipTests=$SKIP_TESTS | egrep -v "(^\[INFO\] Download|^\[INFO\].*skipping)" +export MAVEN_OPTS='-XX:+PrintFlagsFinal -Xmx600m -Xms300m' +~/mvnw --batch-mode clean verify -e -DskipTests=$SKIP_TESTS | egrep -v "(^\[INFO\] Download|^\[INFO\].*skipping)" [ -z "$common_travis_dir" ] || popd From e346907805f74ee1a8b491fdd3fbbcde6a1ffc6c Mon Sep 17 00:00:00 2001 From: Les Vogel Date: Sun, 19 Feb 2017 17:42:46 -0800 Subject: [PATCH 2/3] try again --- travis.sh | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/travis.sh b/travis.sh index 7e147fc4ccd..47f0720bf55 100755 --- a/travis.sh +++ b/travis.sh @@ -65,22 +65,9 @@ common_travis_dir="$(travis_changed_files_parent)" [ -z "$common_travis_dir" ] || pushd "$common_travis_dir" -# Temporary -echo "****************************" -echo "****************************" -pwd -echo "****************************" -env -echo "****************************" -ls -echo "****************************" -ls ~ -echo "****************************" -echo "****************************" - # Give Maven a bit more memory export MAVEN_OPTS='-XX:+PrintFlagsFinal -Xmx600m -Xms300m' -~/mvnw --batch-mode clean verify -e -DskipTests=$SKIP_TESTS | egrep -v "(^\[INFO\] Download|^\[INFO\].*skipping)" +${TRAVIS_BUILD_DIR}/mvnw --batch-mode clean verify -e -DskipTests=$SKIP_TESTS | egrep -v "(^\[INFO\] Download|^\[INFO\].*skipping)" [ -z "$common_travis_dir" ] || popd From 758e6af525c055490ebb600dd2b745007b19b152 Mon Sep 17 00:00:00 2001 From: Les Vogel Date: Sun, 19 Feb 2017 18:21:08 -0800 Subject: [PATCH 3/3] $'s should have double quotes --- travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis.sh b/travis.sh index 47f0720bf55..ead0bc806d7 100755 --- a/travis.sh +++ b/travis.sh @@ -67,7 +67,7 @@ common_travis_dir="$(travis_changed_files_parent)" # Give Maven a bit more memory export MAVEN_OPTS='-XX:+PrintFlagsFinal -Xmx600m -Xms300m' -${TRAVIS_BUILD_DIR}/mvnw --batch-mode clean verify -e -DskipTests=$SKIP_TESTS | egrep -v "(^\[INFO\] Download|^\[INFO\].*skipping)" +"${TRAVIS_BUILD_DIR}"/mvnw --batch-mode clean verify -e -DskipTests=$SKIP_TESTS | egrep -v "(^\[INFO\] Download|^\[INFO\].*skipping)" [ -z "$common_travis_dir" ] || popd