1
Fork 0

Rollup merge of #64786 - tmandry:patch-1, r=alexcrichton

Use https for curl when building for linux

I noticed that the dist-x86_64-linux builder uses http to fetch curl and doesn't do any signature verification. It should probably use https.

r? @alexcrichton @Mark-Simulacrum
This commit is contained in:
Tyler Mandry 2019-09-30 14:38:21 -07:00 committed by GitHub
commit fb8f9b47eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,9 +3,11 @@
set -ex
source shared.sh
VERSION=7.51.0
VERSION=7.66.0
curl http://cool.haxx.se/download/curl-$VERSION.tar.bz2 | tar xjf -
curl https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/curl-$VERSION.tar.xz \
| xz --decompress \
| tar xf -
mkdir curl-build
cd curl-build