-
-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JRuby bundler regression in 9.0.5.0 #3635
Labels
Milestone
Comments
@ginkel Thanks for the report...we'll try to look at this for JRuby 9.1. |
must be a thread-safety issues of some kind - guessing maybe outside JRuby (in Bundler or RGs) ... its not consistent to reproduce and fails with a different index-out-of-bounds, here's some
|
was wrong, its coming from regexp -> joni -> jcodings :
|
This was referenced Jun 6, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since upgrading from JRuby 9.0.4.0 to 9.0.5.0 we have a very high probability of our builds failing during bundling. Bundler aborts with a
Java::JavaLang::ArrayIndexOutOfBoundsException
, which it did not on 9.0.4.0. Unfortunately, I can't seem to generate a backtrace for theArrayIndexOutOfBoundsException
, which manifests like this:Additionally, the following warning is emitted during bundling, which hasn't been the case for 9.0.4.0:
Not sure whether that's related to the issues...
I have created a Gist that contains everything that's needed to reproduce the issue through a Docker image build (you can also run the respective code manually, of course, but make sure that you have no Gems cached / installed before each run to increase the chances of failure):
https://gist.github.com/ginkel/9e27221d911c663e4107
Trigger the bug using:
while docker build --no-cache -t bundler-jruby-9.0.5.0-regression .; do :; done
The text was updated successfully, but these errors were encountered: