travis: adapt to Hyper build change

Closes #6419
This commit is contained in:
Daniel Stenberg 2021-01-06 00:50:49 +01:00
parent 0936ecd0ee
commit 5808144f3c
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ Build hyper and enable the C API:
% git clone -b hyper-capi https://github.com/hyperium/hyper
% cd hyper
% cargo build --no-default-features --features ffi
% RUSTFLAGS="--cfg hyper_unstable_ffi" cargo build --features client,http1,http2,ffi
Build curl to use hyper's C API:

View File

@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
# Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@ -109,7 +109,7 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$HYPER" ]; then
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cd $HOME/hyper
cargo build -v --no-default-features --features ffi
RUSTFLAGS="--cfg hyper_unstable_ffi" cargo build --features client,http1,http2,ffi
fi
if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then