Merge pull request #8133 from gyuho/release-test

test: 'FAIL' on release binary download failure
This commit is contained in:
Gyu-Ho Lee 2017-06-20 10:46:11 -07:00 committed by GitHub
commit ac62c6c811

9
test
View File

@ -185,6 +185,10 @@ function release_pass {
# in case, we need to test against different version
UPGRADE_VER=$MANUAL_VER
fi
if [[ -z ${UPGRADE_VER} ]]; then
UPGRADE_VER="v3.2.0"
echo "fallback to" ${UPGRADE_VER}
fi
local file="etcd-$UPGRADE_VER-linux-$GOARCH.tar.gz"
echo "Downloading $file"
@ -195,9 +199,8 @@ function release_pass {
set -e
case $result in
0) ;;
22) return 0
;;
*) exit $result
*) echo "FAIL with" ${result}
exit $result
;;
esac