Merge "Use https to transfer builds"

This commit is contained in:
Jenkins 2016-06-16 07:32:47 +00:00 committed by Gerrit Code Review
commit b728affa64
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ DISTNAME=$(/usr/local/jenkins/slave_scripts/pypi-extract-name.py --tarball \
FILENAME="$DISTNAME-$TAG.tar.gz"
rm -rf *tar.gz
curl --fail -o $FILENAME http://$TARBALL_SITE/$PROJECT/$FILENAME
curl --fail -o $FILENAME https://$TARBALL_SITE/$PROJECT/$FILENAME
# Make sure we actually got a gzipped file
file -b $FILENAME | grep gzip

View File

@ -30,7 +30,7 @@ WHEELTYPE=$(/usr/local/jenkins/slave_scripts/pypi-extract-universal.py)
FILENAME="$DISTNAME-$TAG-$WHEELTYPE-none-any.whl"
rm -rf *.whl
curl --fail -o $FILENAME http://$TARBALL_SITE/$PROJECT/$FILENAME
curl --fail -o $FILENAME https://$TARBALL_SITE/$PROJECT/$FILENAME
# Make sure we actually got a wheel
file -b $FILENAME | grep -i zip