Skip to content

Commit

Permalink
ruby: ruby 3.0 does not support openssl 3.0
Browse files Browse the repository at this point in the history
We are using Alpine 3.17 which has openssl 3.0.11 by default.

https://pkgs.alpinelinux.org/package/v3.17/main/x86/openssl
  • Loading branch information
avsej committed Oct 4, 2023
1 parent a41ce1c commit 684cd7e
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion ruby/ruby-build-pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@ pipeline {
notValues 'brew'
}
}
exclude {
axis {
name 'PLATFORM'
values 'alpine'
}
axis {
name 'CB_RUBY_VERSION'
values '3.0'
}
}
}
agent { label PLATFORM }
stages {
Expand Down Expand Up @@ -137,6 +147,16 @@ pipeline {
notValues 'brew'
}
}
exclude {
axis {
name 'PLATFORM'
values 'alpine'
}
axis {
name 'CB_RUBY_VERSION'
notValues '3.0'
}
}
}
agent { label PLATFORM }
stages {
Expand Down Expand Up @@ -194,6 +214,18 @@ pipeline {
values /* '2.7', */ '3.0', '3.1', '3.2'
}
}
excludes {
exclude {
axis {
name 'PLATFORM'
values 'alpine'
}
axis {
name 'CB_RUBY_VERSION'
values '3.0'
}
}
}
agent { label PLATFORM }
stages {
stage("deps") {
Expand Down Expand Up @@ -283,7 +315,7 @@ pipeline {
unstash(name: "gem-centos7-3.1-bin")
unstash(name: "gem-centos7-3.2-bin")
//unstash(name: "gem-alpine-2.7-bin")
unstash(name: "gem-alpine-3.0-bin")
//unstash(name: "gem-alpine-3.0-bin")
unstash(name: "gem-alpine-3.1-bin")
unstash(name: "gem-alpine-3.2-bin")
archiveArtifacts(artifacts: "*.gem")
Expand Down

0 comments on commit 684cd7e

Please sign in to comment.