Use https to transfer builds

Change-Id: I42968041f5433bd9d06e17afc327cf3211a6a17d
This commit is contained in:
Joshua Hesketh 2016-06-16 15:42:16 +10:00
parent 73b426d7a2
commit ecb3e3d32f
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