From 37e65feeda32decf1ee74daaf4d86ea6ed904eb0 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 17 Sep 2017 08:51:56 +0300 Subject: [PATCH] Unset `_JAVA_OPTIONS` env variable. It's causing build failures. See travis-ci/travis-ci#8408 --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 66060dfff7..ca932e99f4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,10 @@ install: - bundle install --deployment --jobs=1 - cp grunt/npm-shrinkwrap.json ./ - npm install +# Undo `_JAVA_OPTIONS` environment variable; +# see https://github.com/travis-ci/travis-ci/issues/8408 +before_script: + - _JAVA_OPTIONS= cache: directories: - node_modules