From 886eb85dec7f4e9e193151befa7e6b4213ea67a0 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 7 Apr 2014 22:22:03 -0600 Subject: [PATCH] Update RELEASE_BUNDLES to include integration tests Previously, running just "hack/release.sh" only ran the unit tests. This updates that to run the unit tests, then the integration tests, then build the binaries, then run the cli integration tests (so we're literally testing the binary we're about to release, which is super freaking cool IMO <3). Docker-DCO-1.1-Signed-off-by: Andrew Page (github: tianon) --- hack/release.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/hack/release.sh b/hack/release.sh index 84e1c42383..d77d454e27 100755 --- a/hack/release.sh +++ b/hack/release.sh @@ -53,9 +53,13 @@ RELEASE_BUNDLES=( ) if [ "$1" != '--release-regardless-of-test-failure' ]; then - RELEASE_BUNDLES=( test "${RELEASE_BUNDLES[@]}" ) + RELEASE_BUNDLES=( + test test-integration + "${RELEASE_BUNDLES[@]}" + test-integration-cli + ) fi - + VERSION=$(cat VERSION) BUCKET=$AWS_S3_BUCKET