Skip to content

Commit

Permalink
nginx-buildbot: added OpenSSL 3.3 and OpenSSL 3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
pluknet authored and thresheek committed Oct 25, 2024
1 parent 9fc0e78 commit c9a1848
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/nginx-buildbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ jobs:
matrix:
os: [ freebsd-14 ]
arch: [ amd64 ]
ssl: [ 'ossl31', 'ossl32', 'bssl', 'lssl', 'qssl' ]
ssl: [ 'ossl31', 'ossl32', 'ossl33', 'ossl34', 'bssl', 'lssl', 'qssl' ]
fail-fast: false
env:
quictls_ver: 3.0.15+quic
Expand Down Expand Up @@ -677,6 +677,18 @@ jobs:
./config no-shared no-threads
make -sj$(nproc)
;;
ossl33)
git clone --depth 1 -b openssl-3.3 https://github.com/openssl/openssl ssl
cd ssl
./config no-shared no-threads
make -sj$(nproc)
;;
ossl34)
git clone --depth 1 -b openssl-3.4 https://github.com/openssl/openssl ssl
cd ssl
./config no-shared no-threads
make -sj$(nproc)
;;
qssl)
git clone --depth 1 -b openssl-${{ env.quictls_ver }} https://github.com/quictls/openssl ssl
cd ssl
Expand Down

0 comments on commit c9a1848

Please sign in to comment.