summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-11-03 14:25:49 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-11-03 14:26:46 +0100
commit2654c7fa8468e7385baf9a0eb6d617bf72a5adf7 (patch)
treecc9be31814abeb7e716be5194fd9aa2fd60da6bf
parent45a7821eefc564d0da100dafbe26d1fd61134fa9 (diff)
downloadcurl-bagder/zuul-quiche-cmake.tar.gz
zuul: pin the quiche build to use an older cmake-rsbagder/zuul-quiche-cmake
-rwxr-xr-xscripts/zuul/before_script.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/zuul/before_script.sh b/scripts/zuul/before_script.sh
index 79bdb04b5..82b912603 100755
--- a/scripts/zuul/before_script.sh
+++ b/scripts/zuul/before_script.sh
@@ -120,6 +120,11 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cd $HOME/quiche
+
+ #### Work-around https://github.com/curl/curl/issues/7927 #######
+ #### See https://github.com/alexcrichton/cmake-rs/issues/131 ####
+ sed -i -e 's/cmake = "0.1"/cmake = "=0.1.45"/' Cargo.toml
+
cargo build -v --release --features ffi,pkg-config-meta,qlog
mkdir -v deps/boringssl/src/lib
ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) deps/boringssl/src/lib/