Skip to content

Commit

Permalink
update ruby 3.3 support from 3.3.0-rc1 to 3.3.5
Browse files Browse the repository at this point in the history
Note that 3.3.0..3.3.4 are not usable because of
https://bugs.ruby-lang.org/issues/20088. The fix was eventually
backported in 3.3.5.
  • Loading branch information
flavorjones committed Sep 24, 2024
1 parent 116ac23 commit cf0522f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.mri.erb
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ RUN sudo mkdir -p /usr/local/rake-compiler && \
xrubies_build_plan = if platform =~ /x64-mingw-ucrt/
[
# Rubyinstaller-3.1.0+ is platform x64-mingw-ucrt
["3.3.0-rc1:3.2.0:3.1.0", "3.1.3"],
["3.3.5:3.2.0:3.1.0", "3.1.3"],
]
elsif platform =~ /x64-mingw32/
[
Expand All @@ -121,7 +121,7 @@ elsif platform =~ /x64-mingw32/
else
[
["2.6.0:2.5.0:2.4.0", "2.5.9"],
["3.3.0-rc1:3.2.0:3.1.0:3.0.0:2.7.0", "3.1.3"],
["3.3.5:3.2.0:3.1.0:3.0.0:2.7.0", "3.1.3"],
]
end

Expand Down Expand Up @@ -217,6 +217,6 @@ COPY build/sudoers /etc/sudoers.d/rake-compiler-dock

RUN bash -c "rbenv global 3.1.3"

ENV RUBY_CC_VERSION=3.3.0:3.2.0:3.1.0:3.0.0:2.7.0:2.6.0:2.5.0:2.4.0
ENV RUBY_CC_VERSION=3.3.5:3.2.0:3.1.0:3.0.0:2.7.0:2.6.0:2.5.0:2.4.0

CMD bash
7 changes: 6 additions & 1 deletion History.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@
Changed the base image of `x86_64-linux-gnu` and `x86-linux-gnu` images from `manylinux2014` to `ubuntu:20.04`, unifying all the builds are the same base image. See https://github.com/rake-compiler/rake-compiler-dock/issues/122 for more context.


### Features
### Added

- Add support for the `SOURCE_DATE_EPOCH` environment variable, which can be used to create reproducible builds. #128 by @segiddins)


### Changed

- Move Ruby 3.3 support from 3.3.0-rc1 to 3.3.5. Note that the 3.3.x releases are not usable until 3.3.5 because of https://bugs.ruby-lang.org/issues/20088.


## 1.5.2 / 2024-07-30

With CentOS 7 becoming EOL as of 2024-06-30, `yum` will no longer work in the `x86_64-linux-gnu` and
Expand Down

0 comments on commit cf0522f

Please sign in to comment.