Skip to content

Commit 72e16da

Browse files
authoredFeb 26, 2025··
Merge pull request #16 from cedarcode/nt--test-against-openssl-3.3
Test against `OpenSSL 3.3`
2 parents 509170e + 45bc952 commit 72e16da

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed
 

Diff for: ‎.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
- 2.5
4141
- 2.4
4242
gemfile:
43+
- openssl_3_3
4344
- openssl_3_2
4445
- openssl_3_1
4546
- openssl_3_0
@@ -60,6 +61,12 @@ jobs:
6061
gemfile: openssl_3_2
6162
- ruby-version: '2.6'
6263
gemfile: openssl_3_2
64+
- ruby-version: '2.4'
65+
gemfile: openssl_3_3
66+
- ruby-version: '2.5'
67+
gemfile: openssl_3_3
68+
- ruby-version: '2.6'
69+
gemfile: openssl_3_3
6370
env:
6471
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
6572
steps:

Diff for: ‎Appraisals

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# frozen_string_literal: true
22

3+
appraise "openssl_3_3" do
4+
gem "openssl", "~> 3.3.0"
5+
end
6+
37
appraise "openssl_3_2" do
48
gem "openssl", "~> 3.2.0"
59
end

Diff for: ‎gemfiles/openssl_3_3.gemfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "appraisal", "~> 2.2"
6+
gem "byebug", "~> 11.0"
7+
gem "ed25519", "~> 1.2"
8+
gem "rake", "~> 13.0"
9+
gem "rspec", "~> 3.0"
10+
gem "rubocop", "~> 1.0"
11+
gem "openssl", "~> 3.3.0"
12+
13+
gemspec path: "../"

0 commit comments

Comments
 (0)
Please sign in to comment.