Skip to content

Commit

Permalink
Merge pull request #68 from nicolastemciuc/nt--test-against-latest-op…
Browse files Browse the repository at this point in the history
…enssl-versions

Test against latest `OpenSSL` versions
  • Loading branch information
santiagorodriguez96 authored Dec 13, 2024
2 parents 8d2792f + d9a43e7 commit 0533694
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,28 @@ jobs:
- 2.5
- 2.4
gemfile:
- openssl_3_2
- openssl_3_1
- openssl_3_0
- openssl_2_2
- openssl_2_1
- openssl_default
exclude:
- ruby: '2.4'
gemfile: openssl_3_0
- ruby: '2.4'
gemfile: openssl_3_1
- ruby: '2.4'
gemfile: openssl_3_2
- ruby: '2.5'
gemfile: openssl_3_0
- ruby: '2.5'
gemfile: openssl_3_1
- ruby: '2.5'
gemfile: openssl_3_2
- ruby: '2.6'
gemfile: openssl_3_2

env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down
8 changes: 8 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,13 @@ appraise "openssl_3_0" do
gem "openssl", "~> 3.0.0"
end

appraise "openssl_3_1" do
gem "openssl", "~> 3.1.0"
end

appraise "openssl_3_2" do
gem "openssl", "~> 3.2.0"
end

appraise "openssl_default" do
end
7 changes: 7 additions & 0 deletions gemfiles/openssl_3_1.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "openssl", "~> 3.1.0"

gemspec path: "../"
7 changes: 7 additions & 0 deletions gemfiles/openssl_3_2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "openssl", "~> 3.2.0"

gemspec path: "../"

0 comments on commit 0533694

Please sign in to comment.