-
Notifications
You must be signed in to change notification settings - Fork 1.7k
AVRO-3697: [ruby] Test against Ruby 3.2 #2041
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,11 +24,6 @@ cd "$(dirname "$0")" | |
| export GEM_HOME="$PWD/.gem/" | ||
| export PATH="/usr/local/rbenv/shims:$GEM_HOME/bin:$PATH" | ||
|
|
||
| # bootstrap bundler | ||
| gem install --no-document -v 1.17.3 bundler | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This version of bundler is old (12/27/2018) and no longer needed. |
||
|
|
||
| # rbenv is used by the Dockerfile but not the Github action in CI | ||
| rbenv rehash 2>/dev/null || echo "Not using rbenv" | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use of rbenv was previously removed from the Dockerfile setup: cf7bfe7#diff-9ad53a2cdd23436f405be61d20306403700f362287b3d86609319919176a6fb6L191-L203 |
||
| bundle install | ||
|
|
||
| for target in "$@" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bundler is already installed by the
ruby/setup-rubyaction.