You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2024. It is now read-only.
https://travis-ci.org/rspec/rspec-support/jobs/45770207#L544
See travis-ci/travis-ci#3067
Per http://docs.travis-ci.com/user/ci-environment/
Travis sets JRUBY_OPTS="--server -Dcext.enabled=false -Xcompile.invokedynamic=false"
but current JRuby throws warnings when passed -Dcext.enabled
Until that is fixed, it is sensible to just set
JRUBY_OPTS="--server -Xcompile.invokedynamic=false"
It's common to modify JRUBY_OPTS in travis projects, and in fact
script/functions.sh modimodimodimodifies it!
# idea taken from: http://blog.headius.com/2010/03/jruby-startup-time-tips.html
export JRUBY_OPTS="${JRUBY_OPTS} -X-C" # disable JIT since these processes are so short lived
Use -Xcompat.version=2.0 per `jruby --properties` in place of
`--2.0`, which wasn't being respected
0 commit comments