Commit f65a498 1 parent fcaf73d commit f65a498 Copy full SHA for f65a498
File tree 3 files changed +26
-1
lines changed
3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -266,6 +266,29 @@ jobs:
266
266
# APR_VERSION=1.7.0
267
267
# APU_VERSION=1.6.3
268
268
# APU_CONFIG="--with-crypto --with-ldap"
269
+ - name : OpenSSL 3.1 build
270
+ config : --enable-mods-shared=most --enable-maintainer-mode --disable-md --disable-http2 --disable-ldap --disable-crypto
271
+ env : |
272
+ TEST_OPENSSL3=3.1.5
273
+ APR_VERSION=1.7.4
274
+ APU_VERSION=1.6.3
275
+ APU_CONFIG="--without-crypto"
276
+ - name : OpenSSL 3.1 -Werror build
277
+ config : --enable-mods-shared=most --enable-maintainer-mode --disable-md --disable-http2 --disable-ldap --disable-crypto
278
+ notest-cflags : -Werror -O2 -Wno-deprecated-declarations
279
+ env : |
280
+ TEST_OPENSSL3=3.1.5
281
+ APR_VERSION=1.7.4
282
+ APU_VERSION=1.6.3
283
+ APU_CONFIG="--without-crypto"
284
+ - name : OpenSSL 3.1 no-engine build
285
+ config : --enable-mods-shared=most --enable-maintainer-mode --disable-md --disable-http2 --disable-ldap --disable-crypto
286
+ env : |
287
+ TEST_OPENSSL3=3.1.5
288
+ OPENSSL_CONFIG=no-engine
289
+ APR_VERSION=1.7.4
290
+ APU_VERSION=1.6.3
291
+ APU_CONFIG="--without-crypto"
269
292
runs-on : ubuntu-latest
270
293
timeout-minutes : 30
271
294
env :
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ if test -v TEST_OPENSSL3; then
115
115
curl " https://www.openssl.org/source/openssl-${TEST_OPENSSL3} .tar.gz" |
116
116
tar -xzf -
117
117
cd openssl-${TEST_OPENSSL3}
118
- ./Configure --prefix=$HOME /root/openssl3 shared no-tests
118
+ ./Configure --prefix=$HOME /root/openssl3 shared no-tests ${OPENSSL_CONFIG}
119
119
make $MFLAGS
120
120
make install_sw
121
121
touch $HOME /root/openssl-is-${TEST_OPENSSL3}
Original file line number Diff line number Diff line change 62
62
if test -v TEST_OPENSSL3; then
63
63
CONFIG=" $CONFIG --with-ssl=$HOME /root/openssl3"
64
64
export LD_LIBRARY_PATH=$HOME /root/openssl3/lib:$HOME /root/openssl3/lib64
65
+ export PATH=$HOME /root/openssl3/bin:$PATH
66
+ openssl version
65
67
fi
66
68
67
69
srcdir=$PWD
You can’t perform that action at this time.
0 commit comments