mirror of https://github.com/sbt/sbt.git
Merge pull request #3522 from eed3si9n/wip/travis2
Undo _JAVA_OPTIONS enrivonment variable
This commit is contained in:
commit
363966da28
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue