Edouard CHIN
Edouard CHIN
I think it's the same issue as https://github.com/ruby/rubygems/issues/9130, can you try the solution I mentioned in the comment.
https://github.com/ruby/rubygems/issues/9130#issuecomment-3587753651 Wrap whatever code creates a `bundle install` subprocess with `Bundle.with_unbundled_env`. I believe in your project what runs bundle install is in the engine_cart library, so this would need to...
I opened a fix in the [engine_cart](https://github.com/cbeer/engine_cart/pull/136) gem. The issue wasn't related to #9130. But the issue isn't related to the 4.0.1 release, the engine_cart test suite is broken since...
Thank you for the bug report and sorry about this issue. Having the same number of jobs as BUNDLE_JOBS make sense to me. I'll open a fix
Thanks folks. So I think there are two distinct issues now. 1. Reuse the `BUNDLE_JOBS` value to let users control the number of jobs during compilation. [This PR](https://github.com/ruby/rubygems/pull/9171) addresses that....
👋 The reason I added the timing information during debugging was because I felt that printing it by default wouldn't provide any value to regular users. > Very easy to...
I made the required change to be able to pass the `BUNDLE_JOBS` down to make as well as adding a new `gem instal -j` option flag. This PR is already...
I think we'll need to modify this one too https://github.com/ruby/rubygems/blob/48272fb44a2c0f298beef0cf463b05d7bc7356e9/bundler/lib/bundler/fetcher/gem_remote_fetcher.rb#L8-L11
> We have a workflow which expect Bundler to throw GemfileNotFound Are you invoking bundler the normal way using the `bundle` executable, or do you programatically use the `Bundler::CLI` in...
Thanks for adding more information. Re `bundle.bat`, that's what I thought too, but I can't seem to reproduce the NoMethodError problem https://github.com/Edouard-chin/experiment/actions/runs/20238418737/job/58099357773 I'll look a bit more