-
Notifications
You must be signed in to change notification settings - Fork 29
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
S3 bucket layout breaks RVM #19
Comments
Also as a separate issue kind of, the aliases for
|
@coderanger or maybe you could open a PR for RVM to add support for nested directories? my guess is that we can:
...well just guessing, but that would be the best fix if I understood the problem corectly |
Seems like it could be done, but probably more work than fixing it on the S3 side :) It took me long enough to figure out what the RVM code is doing, I wouldn't feel comfortable changing it on my own. Part of the problem is that both |
I've been trying to diagnose why RVM's usual fuzzy matching hasn't been working with Travis-provided binaries. As an example case, trying to use
2.3
as a Ruby version results in a failed build.2.0
,2.1
, and2.2
work but are manually aliased to things other than the latest versions of those respective releases, which is not what I would expect. The issue with2.3
seems to be that the travis-rubies S3 bucket was set up with everything under a singlebinaries
folder. This causes RVM's S3 support to fail because the base URL (https://s3.amazonaws.com/travis-rubies/binaries
) is a 404 rather than the expected XML key list document. Reorganizing things to remove thebinaries/
"folder" should fix this.The text was updated successfully, but these errors were encountered: