diff options
| author | XhmikosR <[email protected]> | 2017-09-17 08:51:56 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-09-17 08:51:56 +0300 |
| commit | 37e65feeda32decf1ee74daaf4d86ea6ed904eb0 (patch) | |
| tree | 6bca92accc16318b1dcbe5f49690044c647e1e07 | |
| parent | 8b727783d8167ce3c55b3ff4ce4476f2d88fa186 (diff) | |
| download | bootstrap-37e65feeda32decf1ee74daaf4d86ea6ed904eb0.tar.xz bootstrap-37e65feeda32decf1ee74daaf4d86ea6ed904eb0.zip | |
Unset `_JAVA_OPTIONS` env variable.
It's causing build failures.
See travis-ci/travis-ci#8408
| -rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 66060dfff..ca932e99f 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 |
