Skip to content

Commit b3282a6

Browse files
committed
ruby: ruby 3.0 does not support openssl 3.0
We are using Alpine 3.17 which has openssl 3.0.11 by default. https://pkgs.alpinelinux.org/package/v3.17/main/x86/openssl
1 parent a41ce1c commit b3282a6

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

ruby/ruby-build-pipeline.groovy

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ pipeline {
4444
notValues 'brew'
4545
}
4646
}
47+
exclude {
48+
axis {
49+
name 'PLATFORM'
50+
values 'alpine'
51+
}
52+
axis {
53+
name 'CB_RUBY_VERSION'
54+
values '3.0'
55+
}
56+
}
4757
}
4858
agent { label PLATFORM }
4959
stages {
@@ -137,6 +147,16 @@ pipeline {
137147
notValues 'brew'
138148
}
139149
}
150+
exclude {
151+
axis {
152+
name 'PLATFORM'
153+
values 'alpine'
154+
}
155+
axis {
156+
name 'CB_RUBY_VERSION'
157+
notValues '3.0'
158+
}
159+
}
140160
}
141161
agent { label PLATFORM }
142162
stages {
@@ -194,6 +214,18 @@ pipeline {
194214
values /* '2.7', */ '3.0', '3.1', '3.2'
195215
}
196216
}
217+
excludes {
218+
exclude {
219+
axis {
220+
name 'PLATFORM'
221+
values 'alpine'
222+
}
223+
axis {
224+
name 'CB_RUBY_VERSION'
225+
values '3.0'
226+
}
227+
}
228+
}
197229
agent { label PLATFORM }
198230
stages {
199231
stage("deps") {

0 commit comments

Comments
 (0)