Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Ruby] update bundle before building the native lib (grpc#38303)
fixes grpc#38298 What happened was that in the rake dock container, Bundler version is 2.6.0; but on the CI host, Bundler version is 2.5.3 When starting the container, Gemfile.lock is mounted to the container as well, which causes in version compatibility issues when it tries to switch back to 2.5.3 in the container. This PR runs bundle update in the container to reconcile the versions of bundler and other germs so the build can succeed. ``` Bundler 2.6.0 is running, but your lockfile was generated with 2.5.3. Installing Bundler 2.5.3 and restarting using that version. Fetching gem metadata from [https://rubygems.org/](https://www.google.com/url?q=https://rubygems.org/&sa=D). Fetching bundler 2.5.3 Installing bundler 2.5.3 ``` Closes grpc#38303 COPYBARA_INTEGRATE_REVIEW=grpc#38303 from alto-ruby:fix-distribution-tests-ruby-linux 1efc15e PiperOrigin-RevId: 707932172
- Loading branch information