Skip to content

Commit ff09b4a

Browse files
committed
ruby: do not build for ruby 2.5 as it reached EOL
1 parent ef87633 commit ff09b4a

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

ruby/ruby-build-pipeline.groovy

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pipeline {
2121
}
2222
axis {
2323
name 'CB_RUBY_VERSION'
24-
values '2.5', '2.6', '2.7', '3.0.0'
24+
values '2.6', '2.7', '3.0'
2525
}
2626
}
2727
agent { label PLATFORM }
@@ -96,7 +96,7 @@ pipeline {
9696
}
9797
axis {
9898
name 'CB_RUBY_VERSION'
99-
values '2.5', '2.6', '2.7', '3.0.0'
99+
values '2.6', '2.7', '3.0'
100100
}
101101
}
102102
agent { label PLATFORM }
@@ -139,11 +139,11 @@ pipeline {
139139
axes {
140140
axis {
141141
name 'CB_VERSION'
142-
values '6.0-stable', '6.5-stable', '7.0.0-4797' //, '6.6-stable'
142+
values '6.0-stable', '6.5-stable', '7.0.0-5127' //, '6.6-stable'
143143
}
144144
axis {
145145
name 'CB_RUBY_VERSION'
146-
values '2.5', '2.6', '2.7', '3.0.0'
146+
values '2.6', '2.7', '3.0'
147147
}
148148
}
149149
agent { label PLATFORM }
@@ -216,18 +216,15 @@ pipeline {
216216
dir("repo-${BUILD_NUMBER}") {
217217
unstash(name: "scripts-centos7-2.7")
218218
dir("gem-bin") {
219-
unstash(name: "gem-macos-11.0-2.5-bin")
220219
unstash(name: "gem-macos-11.0-2.6-bin")
221220
unstash(name: "gem-macos-11.0-2.7-bin")
222-
unstash(name: "gem-macos-11.0-3.0.0-bin")
223-
unstash(name: "gem-macos-10.15-2.5-bin")
221+
unstash(name: "gem-macos-11.0-3.0-bin")
224222
unstash(name: "gem-macos-10.15-2.6-bin")
225223
unstash(name: "gem-macos-10.15-2.7-bin")
226-
unstash(name: "gem-macos-10.15-3.0.0-bin")
227-
unstash(name: "gem-centos7-2.5-bin")
224+
unstash(name: "gem-macos-10.15-3.0-bin")
228225
unstash(name: "gem-centos7-2.6-bin")
229226
unstash(name: "gem-centos7-2.7-bin")
230-
unstash(name: "gem-centos7-3.0.0-bin")
227+
unstash(name: "gem-centos7-3.0-bin")
231228
archiveArtifacts(artifacts: "*.gem")
232229
}
233230
dir("gem-src") {
@@ -286,9 +283,6 @@ pipeline {
286283
cfInvalidate(
287284
distribution: "$AWS_CF_DISTRIBUTION",
288285
paths: [
289-
"/${prefix}ruby/2.5.0/latest_specs.*",
290-
"/${prefix}ruby/2.5.0/prerelease_specs.*",
291-
"/${prefix}ruby/2.5.0/specs.*",
292286
"/${prefix}ruby/2.6.0/latest_specs.*",
293287
"/${prefix}ruby/2.6.0/prerelease_specs.*",
294288
"/${prefix}ruby/2.6.0/specs.*",

0 commit comments

Comments
 (0)