Revert jenkins/e2e.sh back to 606b517a, minus -tap

This commit is contained in:
Zach Loafman 2015-02-05 10:23:19 -08:00
parent 8b25b43039
commit c15595fdf7

View File

@ -77,12 +77,11 @@ if [[ ! -z ${E2E_SET_CLUSTER_API_VERSION:-} ]]; then
export CLUSTER_API_VERSION=$(echo ${GITHASH} | cut -c 2-) export CLUSTER_API_VERSION=$(echo ${GITHASH} | cut -c 2-)
fi fi
export KUBE_CONFIG_FILE="config-test.sh" # Have cmd/e2e run by goe2e.sh generate JUnit report in ${WORKSPACE}/junit*.xml
cluster/kube-down.sh || true export E2E_REPORT_DIR=${WORKSPACE}
cluster/kube-up.sh || { echo "-- kube-up failed --"; exit 1; }
echo go run ./hack/e2e.go ${E2E_OPT} -v --down
echo "-- cluster created at $(date -Is) --" go run ./hack/e2e.go ${E2E_OPT} -v --up
echo go run ./hack/e2e.go -v --ctl="version --match-server-version=false"
cluster/kubectl.sh version || { echo "-- kubectl failed --"; exit 1; } go run ./hack/e2e.go ${E2E_OPT} -v --test
hack/ginkgo-e2e.sh --report_dir=${WORKSPACE} || { echo "-- tests failed --"; exit 1; } go run ./hack/e2e.go ${E2E_OPT} -v --down
cluster/kube-down.sh || { echo "-- kube-down failed --"; exit 1; }