Update OpenSSL download location

In rustbuild itself we download from our mirror but in the containers we don't
do this yet. The OpenSSL download url changes from time to time (it breaks when
they release a new version) so let's download from our mirror instead.
This commit is contained in:
Alex Crichton 2017-05-25 10:07:41 -07:00
parent deb90c33cc
commit 357133b362
2 changed files with 6 additions and 4 deletions

View File

@ -12,9 +12,10 @@
set -ex
source shared.sh
VERSION=1.0.2j
VERSION=1.0.2k
URL=https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/openssl-$VERSION.tar.gz
curl https://www.openssl.org/source/openssl-$VERSION.tar.gz | tar xzf -
curl $URL | tar xzf -
cd openssl-$VERSION
hide_output ./config --prefix=/rustroot shared -fPIC

View File

@ -12,9 +12,10 @@
set -ex
source shared.sh
VERSION=1.0.2j
VERSION=1.0.2k
URL=https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/openssl-$VERSION.tar.gz
curl https://www.openssl.org/source/openssl-$VERSION.tar.gz | tar xzf -
curl $URL | tar xzf -
cd openssl-$VERSION
hide_output ./config --prefix=/rustroot shared -fPIC