Skip to content

Commit 1c0e91d

Browse files
committed
update "3.2.0-rc1" with "3.2.0" final
and update the CI pipeline to test with 3.2.
1 parent 0f4b2c2 commit 1c0e91d

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ jobs:
117117
- macos
118118
- ubuntu
119119
ruby:
120+
- "3.2"
120121
- "3.1"
121122
- "3.0"
122123
- "2.7"
@@ -138,9 +139,14 @@ jobs:
138139
- os: windows
139140
ruby: "3.1"
140141
platform: x64-mingw-ucrt
142+
- os: windows
143+
ruby: "3.2"
144+
platform: x64-mingw-ucrt
141145
exclude:
142146
- os: windows
143147
ruby: "3.1"
148+
- os: windows
149+
ruby: "3.2"
144150

145151
runs-on: ${{ matrix.os }}-latest
146152
steps:
@@ -170,6 +176,7 @@ jobs:
170176
os:
171177
- windows
172178
ruby:
179+
- "3.2"
173180
- "3.1"
174181
- "3.0"
175182
- "2.7"
@@ -182,9 +189,14 @@ jobs:
182189
- os: windows
183190
ruby: "3.1"
184191
platform: x64-mingw-ucrt
192+
- os: windows
193+
ruby: "3.2"
194+
platform: x64-mingw-ucrt
185195
exclude:
186196
- os: windows
187197
ruby: "3.1"
198+
- os: windows
199+
ruby: "3.2"
188200

189201
runs-on: ${{ matrix.os }}-latest
190202
steps:

Dockerfile.mri.erb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,7 @@ RUN bash -c " \
135135
axrubies = if platform =~ /x64-mingw-ucrt/
136136
[
137137
# Rubyinstaller-3.1.0+ is platform x64-mingw-ucrt
138-
# 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.3", false],
138+
["3.2.0:3.1.0", "3.1.3", true],
140139
]
141140
elsif platform =~ /x64-mingw32/
142141
[
@@ -149,7 +148,7 @@ else
149148
# Build xruby versions prior ruby2_keywords in parallel using ruby-2.5
150149
["2.6.0:2.5.0:2.4.0", "2.5.9", false],
151150
# 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.3", true],
151+
["3.2.0:3.1.0:3.0.0:2.7.0", "3.1.3", true],
153152
]
154153
end
155154

test/env/Dockerfile.centos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN yum install -y ruby git
1111

1212
RUN ruby --version
1313
RUN gem env
14-
RUN gem inst bundler
14+
RUN gem install bundler -v2.2.28
1515

1616
WORKDIR /build
1717

0 commit comments

Comments
 (0)