Skip to content

Commit 0f4b2c2

Browse files
authored
Merge pull request #89 from rake-compiler/update-native-ruby
Update default native ruby from 3.1.0 to 3.1.3
2 parents 6323fef + ba1bb01 commit 0f4b2c2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile.mri.erb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN gpg --keyserver hkp://keyserver.ubuntu.com --recv-keys 409B6B1796C275462A170
5252

5353
# Install native rubies and fix permissions
5454
COPY build/patches /home/rvm/patches/
55-
ENV RVM_RUBIES 2.5.9 3.1.0
55+
ENV RVM_RUBIES 2.5.9 3.1.3
5656
RUN bash -c " \
5757
export CFLAGS='-s -O3 -fno-fast-math -fPIC' && \
5858
for v in ${RVM_RUBIES} ; do \
@@ -136,20 +136,20 @@ axrubies = if platform =~ /x64-mingw-ucrt/
136136
[
137137
# Rubyinstaller-3.1.0+ is platform x64-mingw-ucrt
138138
# parallel=false because 3.2.0-rc1 has undefined references when using a high -j arg
139-
["3.2.0-rc1:3.1.0", "3.1.0", false],
139+
["3.2.0-rc1:3.1.0", "3.1.3", false],
140140
]
141141
elsif platform =~ /x64-mingw32/
142142
[
143143
# Rubyinstaller prior to 3.1.0 is platform x64-mingw32
144144
["2.6.0:2.5.0:2.4.0", "2.5.9", false],
145-
["3.0.0:2.7.0", "3.1.0", true],
145+
["3.0.0:2.7.0", "3.1.3", true],
146146
]
147147
else
148148
[
149149
# Build xruby versions prior ruby2_keywords in parallel using ruby-2.5
150150
["2.6.0:2.5.0:2.4.0", "2.5.9", false],
151151
# Build xruby versions with ruby2_keywords in parallel using ruby-3.x
152-
["3.2.0-rc1:3.1.0:3.0.0:2.7.0", "3.1.0", true],
152+
["3.2.0-rc1:3.1.0:3.0.0:2.7.0", "3.1.3", true],
153153
]
154154
end
155155

@@ -246,7 +246,7 @@ RUN echo "source /etc/profile.d/rcd-env.sh" >> /etc/rubybashrc
246246
COPY build/sudoers /etc/sudoers.d/rake-compiler-dock
247247

248248
RUN bash -c " \
249-
rvm alias create default 3.1.0 && \
249+
rvm alias create default 3.1.3 && \
250250
rvm use default \
251251
"
252252

0 commit comments

Comments
 (0)