Skip to content

Commit

Permalink
ci: test against OpenSSL 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolastemciuc committed Feb 25, 2025
1 parent 9816c37 commit 45bc952
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- 2.5
- 2.4
gemfile:
- openssl_3_3
- openssl_3_2
- openssl_3_1
- openssl_3_0
Expand All @@ -45,6 +46,12 @@ jobs:
gemfile: openssl_3_2
- ruby-version: '2.6'
gemfile: openssl_3_2
- ruby-version: '2.4'
gemfile: openssl_3_3
- ruby-version: '2.5'
gemfile: openssl_3_3
- ruby-version: '2.6'
gemfile: openssl_3_3
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
steps:
Expand Down
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# frozen_string_literal: true

appraise "openssl_3_3" do
gem "openssl", "~> 3.3.0"
end

appraise "openssl_3_2" do
gem "openssl", "~> 3.2.0"
end
Expand Down
13 changes: 13 additions & 0 deletions gemfiles/openssl_3_3.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal", "~> 2.2"
gem "byebug", "~> 11.0"
gem "ed25519", "~> 1.2"
gem "rake", "~> 13.0"
gem "rspec", "~> 3.0"
gem "rubocop", "~> 1.0"
gem "openssl", "~> 3.3.0"

gemspec path: "../"

0 comments on commit 45bc952

Please sign in to comment.