mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-04 17:53:55 +02:00
CI: travis-ci: replace not defined SSL_LIB, SSL_INC for BotringSSL builds
after 73b520b958 variables SSL_LIB, SSL_INC
are not set, but still used by BoringSSL builds. That leads to error
(I wish we could stop on such errors) and using stock openssl instead
of boringssl
This commit is contained in:
committed by
Willy Tarreau
parent
b7ffe1975a
commit
6b736b4476
@@ -103,14 +103,14 @@ if [ ! -z ${BORINGSSL+x} ]; then
|
||||
cmake -GNinja -DCMAKE_BUILD_TYPE=release -DBUILD_SHARED_LIBS=1 ..
|
||||
ninja
|
||||
|
||||
rm -rf ${SSL_LIB} || exit 0
|
||||
rm -rf ${SSL_INC} || exit 0
|
||||
rm -rf ${HOME}/opt/lib || exit 0
|
||||
rm -rf ${HOME}/opt/include || exit 0
|
||||
|
||||
mkdir -p ${SSL_LIB}
|
||||
cp crypto/libcrypto.so ssl/libssl.so ${SSL_LIB}
|
||||
mkdir -p ${HOME}/opt/lib
|
||||
cp crypto/libcrypto.so ssl/libssl.so ${HOME}/opt/lib
|
||||
|
||||
mkdir -p ${SSL_INC}
|
||||
cp -r ../include/* ${SSL_INC}
|
||||
mkdir -p ${HOME}/opt/include
|
||||
cp -r ../include/* ${HOME}/opt/include
|
||||
)
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user