> Maybe it'd make sense and possibly safe enough to automatically merge PRs by ruby-builder-bot, after they pass CI of course ... if someone is interested, please make a PR to setup-ruby. I've opened https://github.com/ruby/setup-ruby...mdalessio (Mike Dalessio)
> https://github.com/ruby/setup-ruby/pull/844 got merged the same day, what would you expect? A counter-example, though, is that the PR for windows support (https://github.com/ruby/setup-ruby/pull/847) took 3 days to get merged. I thi...mdalessio (Mike Dalessio)
> > I don't think the installation script works with no extensions because it loads rubygems that require monitor > ... Ah, I see, is this because logger relies on monitor, and logger is no longer part of the stdlib (it is a bundled gem...mdalessio (Mike Dalessio)
> I don't think the installation script works with no extensions because it loads rubygems that require monitor @nobu Is this something that changed since Ruby 3.4? `rake-compiler` has been using the `--with-ext=` (empty) option since...mdalessio (Mike Dalessio)
When building Ruby with `--enable-shared` and `--with-ext=` (empty, to disable all extensions), the build fails because spec/ruby/optional/capi/ext/digest_spec.c cannot find ruby/digest.h. This affects cross-compilation tooling like `...mdalessio (Mike Dalessio)
Would this problem be avoided if mini_portile2 declared an explicit dependency on net-http? If it would be helpful I'm happy to cut a new release of mini_portile with that change. mdalessio (Mike Dalessio)
I wonder if `-Werror` is being set implicitly? I'm seeing similar failures up and down my CI pipelines for the gems mentioned by @Earlopain, in addition to libxml2 compilation in Nokogiri's upstream integration testing.mdalessio (Mike Dalessio)
> > Is there a real-world use case to make a String with a pointer allocated outside of xmalloc? > ... Yes, it would be easiest for Nokogiri if non-xmalloc string pointers were supported, but if it was decided to not support this, I wou...mdalessio (Mike Dalessio)