Skip to content

Commit f8eea43

Browse files
authored
Add OpenSSL test versions 3.3.0, 3.3.1 (#149)
1 parent 61a53ab commit f8eea43

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
fail-fast: false
77
matrix:
88
go-version: [1.20.x]
9-
openssl-version: [1.0.2, 1.1.0, 1.1.1, 3.0.1, 3.0.13, 3.1.5, 3.2.1]
9+
openssl-version: [1.0.2, 1.1.0, 1.1.1, 3.0.1, 3.0.13, 3.1.5, 3.2.1, 3.3.0, 3.3.1]
1010
runs-on: ubuntu-20.04
1111
steps:
1212
- name: Install build tools

scripts/openssl.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,22 @@ case "$version" in
7575
make="build_libs"
7676
install="install_fips"
7777
;;
78+
"3.3.0")
79+
tag="openssl-3.3.0";
80+
sha256="1a47bdc46fac256a0dc8efb696f7f76fa5f96049ba1b60fded5478bd3165c6d2"
81+
fipsmodule_version=""
82+
config="enable-fips"
83+
make="build_libs"
84+
install="install_fips"
85+
;;
86+
"3.3.1")
87+
tag="openssl-3.3.1";
88+
sha256="133bf39b8d1635ac94a8483042cc448251b770a0d12c7af0c05ea895ddd98f1d"
89+
fipsmodule_version=""
90+
config="enable-fips"
91+
make="build_libs"
92+
install="install_fips"
93+
;;
7894
*)
7995
echo >&2 "error: unsupported OpenSSL version '$version'"
8096
exit 1 ;;

0 commit comments

Comments
 (0)