File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15+ sudo : true
1516language : java
1617jdk :
1718- oraclejdk8
@@ -55,3 +56,5 @@ after_success:
5556branches :
5657 only :
5758 - master
59+ - java8-master
60+
Original file line number Diff line number Diff line change 1919set -o pipefail
2020shopt -s globstar
2121
22+
2223SKIP_TESTS=false
2324if [ -z " $GOOGLE_APPLICATION_CREDENTIALS " ] ; then
2425 SKIP_TESTS=true
@@ -64,6 +65,8 @@ common_travis_dir="$(travis_changed_files_parent)"
6465
6566[ -z " $common_travis_dir " ] || pushd " $common_travis_dir "
6667
68+ # Give Maven a bit more memory
69+ export MAVEN_OPTS=' -XX:+PrintFlagsFinal -Xmx2g -Xms512m'
6770./mvnw --batch-mode clean verify -e -DskipTests=$SKIP_TESTS | egrep -v " (^\[INFO\] Download|^\[INFO\].*skipping)"
6871
6972[ -z " $common_travis_dir " ] || popd
You can’t perform that action at this time.
0 commit comments