diff options
author | Takashi Kokubun <[email protected]> | 2023-03-10 23:40:22 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-03-10 23:40:22 -0800 |
commit | ac47b8df8f0a58d70eb35e95656d83da0c155aa0 (patch) | |
tree | f75f8a98f456b7ca9a8ee151feb54c4ecbe64c54 /doc/contributing/building_ruby.md | |
parent | 973cb64b1c74981aeed028601020bb4425cc7db3 (diff) |
Bump the required BASERUBY version to 2.5 (#7504)
[Misc #16671]
I'd like to bump it to 2.7 to use pattern matching in
tool/mk_builtin_loader.rb.
However, I experienced a few blockers. 2.5 seems like the closest
version that is easy enough to use on CIs, so let me bump the version to
it as an intermediate step for it. I want to use &. and <<~ in 2.3 too.
Known blockers:
* AppVeyor Visual Studio 2015 doesn't have Ruby 2.7. You'd need to bump
the version to Visual Studio 2019.
* GitHub Actions windows-2019 doesn't have Ruby 2.7 either. You
can use ruby/setup-ruby, but configure doesn't seem to work with it.
* For ruby/ruby-ci-imaage, bionic doesn't have Ruby 2.7. I tried using
ruby-build to build Ruby 2.7 from package, but the build on its CI
seems to somehow loop forever when I do that. So I gave it up for now.
We might want to wait until bionic becomes EOL.
Note:
* AppVeyor Visual Studio 2015 has Ruby <= 2.6.3
https://www.appveyor.com/docs/windows-images-software/#ruby
* GitHub Actions windows-2019 uses Ruby 2.5.9
https://github.com/actions/runner-images/blob/main/images/win/Windows2019-Readme.md
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'doc/contributing/building_ruby.md')
-rw-r--r-- | doc/contributing/building_ruby.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/contributing/building_ruby.md b/doc/contributing/building_ruby.md index 452f0d16b4..8098b72927 100644 --- a/doc/contributing/building_ruby.md +++ b/doc/contributing/building_ruby.md @@ -18,7 +18,7 @@ * bison - 3.0 or later * gperf - 3.1 or later * Usually unneeded; only if you edit some source files using gperf - * ruby - 2.2 or later + * ruby - 2.5 or later * We can upgrade this version to system ruby version of the latest Ubuntu LTS. 2. Install optional, recommended dependencies: |