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:
commit
fb8f9b47eb
1 changed files with 4 additions and 2 deletions
|
@ -3,9 +3,11 @@
|
||||||
set -ex
|
set -ex
|
||||||
source shared.sh
|
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
|
mkdir curl-build
|
||||||
cd curl-build
|
cd curl-build
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue