Skip to content

Commit

Permalink
.github/workflows: test against OpenSSL 3.0
Browse files Browse the repository at this point in the history
Although OpenSSL 3.0 support is not complete yet, our test suite should
now run on OpenSSL 3.0.1 too.
  • Loading branch information
rhenium committed Dec 20, 2021
1 parent d6535d1 commit fd4dd6d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
- openssl-1.0.2u # EOL
- openssl-1.1.0l # EOL
- openssl-1.1.1l
- openssl-3.0.1
- libressl-3.1.5 # EOL
- libressl-3.2.6
- libressl-3.3.4
Expand All @@ -89,7 +90,7 @@ jobs:
curl -OL https://ftp.openssl.org/source/${{ matrix.openssl }}.tar.gz
tar xf ${{ matrix.openssl }}.tar.gz && cd ${{ matrix.openssl }}
# shared is required for 1.0.x.
./Configure --prefix=$HOME/.openssl/${{ matrix.openssl }} \
./Configure --prefix=$HOME/.openssl/${{ matrix.openssl }} --libdir=lib \
shared linux-x86_64
make depend
;;
Expand Down

0 comments on commit fd4dd6d

Please sign in to comment.