GHA: move bearssl jobs over from zuul

Closes #8684
This commit is contained in:
Daniel Stenberg 2022-04-07 08:36:38 +02:00
parent 9e8c8b145b
commit 7e99db829c
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 55 additions and 33 deletions

View file

@ -112,21 +112,3 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then
mkdir -v quiche/deps/boringssl/src/lib
ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) quiche/deps/boringssl/src/lib/
fi
# Install common libraries.
if [ $TRAVIS_OS_NAME = linux ]; then
if [ "$BEARSSL" = "yes" ]; then
if [ ! -e $HOME/bearssl-0.6/Makefile ]; then
cd $HOME
curl -LO https://bearssl.org/bearssl-0.6.tar.gz
tar -xzf bearssl-0.6.tar.gz
cd bearssl-0.6
make
fi
cd $HOME/bearssl-0.6
sudo cp inc/*.h /usr/local/include
sudo cp build/libbearssl.* /usr/local/lib
fi
fi