mirror of
https://github.com/curl/curl.git
synced 2026-07-16 03:27:16 +03:00
travis: add a rustls build
... that doesn't run any tests (yet) Closes #6750
This commit is contained in:
parent
aab3a77e8c
commit
7dbb0a87e6
2 changed files with 21 additions and 0 deletions
|
|
@ -126,6 +126,17 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then
|
|||
ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) deps/boringssl/src/lib/
|
||||
fi
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = linux -a "$RUSTLS" ]; then
|
||||
cd $HOME
|
||||
git clone --depth=1 --recursive https://github.com/abetterinternet/crustls.git
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
source $HOME/.cargo/env
|
||||
cargo install cbindgen
|
||||
cd $HOME/crustls
|
||||
make
|
||||
make DESTDIR=$HOME/crust install
|
||||
fi
|
||||
|
||||
# Install common libraries.
|
||||
# The library build directories are set to be cached by .travis.yml. If you are
|
||||
# changing a build directory name below (eg a version change) then you must
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue