Skip to content

Commit

Permalink
chore(main): fix for tests failing because of bundler change
Browse files Browse the repository at this point in the history
  • Loading branch information
shivgautam committed Jan 10, 2024
1 parent 3da8514 commit d24f8a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .kokoro/system_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ source $KOKORO_GFILE_DIR/secrets.sh
cd github/ruby-docs-samples/

# Install tools
gem install --no-document toys
if [[ $KOKORO_RUBY_VERSION == "newest" ]]; then
gem install --no-document bundler toys
else
gem install --no-document bundler:2.2.2 toys
fi

# Run the CI script
toys kokoro-ci -v

0 comments on commit d24f8a5

Please sign in to comment.