From: XhmikosR Date: Sun, 17 Sep 2017 05:51:56 +0000 (+0300) Subject: Unset `_JAVA_OPTIONS` env variable. X-Git-Tag: v3.4.0~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37e65feeda32decf1ee74daaf4d86ea6ed904eb0;p=thirdparty%2Fbootstrap.git Unset `_JAVA_OPTIONS` env variable. It's causing build failures. See travis-ci/travis-ci#8408 --- 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