From 97e1049d5714820499c4ec8617984d8fe63761be Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Tue, 12 Sep 2017 21:29:40 -0400 Subject: [PATCH] Undo _JAVA_OPTIONS enrivonment variable Ref sbt/sbt#3520 This undoes the environment variable addedin 2017-09-06 update of Travis CI: https://docs.travis-ci.com/user/build-environment-updates/2017-09-06/ --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d180a58ff..a33abc64e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ -# Use Docker-based container (instead of OpenVZ) sudo: false +dist: trusty +group: stable cache: directories: @@ -36,6 +37,10 @@ notifications: email: - sbt-dev-bot@googlegroups.com +# Undo _JAVA_OPTIONS environment variable +before_script: + - _JAVA_OPTIONS= + script: # It doesn't need that much memory because compile and run are forked - sbt -J-XX:ReservedCodeCacheSize=128m -J-Xmx800M -J-Xms800M -J-server "$SBT_CMD"