Add test against OpenSSL w/out ECC.
This commit is contained in:
parent
29e194a752
commit
da9d59f526
|
@ -47,6 +47,10 @@ for TARGET in $TARGETS; do
|
||||||
hardenedmalloc)
|
hardenedmalloc)
|
||||||
INSTALL_HARDENED_MALLOC=yes
|
INSTALL_HARDENED_MALLOC=yes
|
||||||
;;
|
;;
|
||||||
|
openssl-noec)
|
||||||
|
INSTALL_OPENSSL=OpenSSL_1_1_1k
|
||||||
|
SSLCONFOPTS="no-ec"
|
||||||
|
;;
|
||||||
openssl-*)
|
openssl-*)
|
||||||
INSTALL_OPENSSL=$(echo ${TARGET} | cut -f2 -d-)
|
INSTALL_OPENSSL=$(echo ${TARGET} | cut -f2 -d-)
|
||||||
case ${INSTALL_OPENSSL} in
|
case ${INSTALL_OPENSSL} in
|
||||||
|
@ -94,7 +98,8 @@ if [ ! -z "${INSTALL_OPENSSL}" ]; then
|
||||||
(cd ${HOME} &&
|
(cd ${HOME} &&
|
||||||
git clone https://github.com/openssl/openssl.git &&
|
git clone https://github.com/openssl/openssl.git &&
|
||||||
cd ${HOME}/openssl &&
|
cd ${HOME}/openssl &&
|
||||||
./config no-threads no-engine no-fips no-shared --prefix=/opt/openssl/head &&
|
./config no-threads no-engine no-fips no-shared ${SSLCONFOPTS} \
|
||||||
|
--prefix=/opt/openssl/head &&
|
||||||
make -j2 && sudo make install_sw)
|
make -j2 && sudo make install_sw)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,7 @@ jobs:
|
||||||
- { os: ubuntu-20.04, configs: libressl-3.0.2 }
|
- { os: ubuntu-20.04, configs: libressl-3.0.2 }
|
||||||
- { os: ubuntu-20.04, configs: libressl-3.2.5 }
|
- { os: ubuntu-20.04, configs: libressl-3.2.5 }
|
||||||
- { os: ubuntu-20.04, configs: openssl-master }
|
- { os: ubuntu-20.04, configs: openssl-master }
|
||||||
|
- { os: ubuntu-20.04, configs: openssl-noec }
|
||||||
- { os: ubuntu-20.04, configs: openssl-1.0.1 }
|
- { os: ubuntu-20.04, configs: openssl-1.0.1 }
|
||||||
- { os: ubuntu-20.04, configs: openssl-1.0.1u }
|
- { os: ubuntu-20.04, configs: openssl-1.0.1u }
|
||||||
- { os: ubuntu-20.04, configs: openssl-1.0.2u }
|
- { os: ubuntu-20.04, configs: openssl-1.0.2u }
|
||||||
|
|
Loading…
Reference in New Issue