Skip to content

Commit

Permalink
Fixed Ruby tests to pin Bundler to a version compatible with Ruby 2.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
haberman committed Dec 19, 2023
1 parent 7c123c4 commit c5a30e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex
# go to the repo root
cd $(dirname $0)/../../..

gem install bundler
gem install bundler -v 2.4.22

cd ruby

Expand Down
6 changes: 3 additions & 3 deletions kokoro/release/ruby/macos/ruby/ruby_build_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ set -e # rvm commands are very verbose
time rvm install 2.5.0
rvm use 2.5.0
gem install rake-compiler --no-document
gem install bundler --no-document
gem install bundler -v 2.4.22 --no-document
time rvm install 3.1.0
rvm use 3.1.0
gem install rake-compiler --no-document
gem install bundler --no-document
gem install bundler -v 2.4.22 --no-document
time rvm install 2.7.0
rvm use 2.7.0 --default
gem install rake-compiler --no-document
gem install bundler --no-document
gem install bundler -v 2.4.22 --no-document
rvm osx-ssl-certs status all
rvm osx-ssl-certs update all
set -ex
Expand Down

0 comments on commit c5a30e7

Please sign in to comment.