Browse Source

Merge pull request #5073 from tianon/update-release-bundles

Update RELEASE_BUNDLES to include integration tests
Tianon Gravi 11 years ago
parent
commit
2204a27df0
1 changed files with 6 additions and 2 deletions
  1. 6 2
      hack/release.sh

+ 6 - 2
hack/release.sh

@@ -53,9 +53,13 @@ RELEASE_BUNDLES=(
 )
 )
 
 
 if [ "$1" != '--release-regardless-of-test-failure' ]; then
 if [ "$1" != '--release-regardless-of-test-failure' ]; then
-	RELEASE_BUNDLES=( test "${RELEASE_BUNDLES[@]}" )
+	RELEASE_BUNDLES=(
+		test test-integration
+		"${RELEASE_BUNDLES[@]}"
+		test-integration-cli
+	)
 fi
 fi
-	
+
 VERSION=$(cat VERSION)
 VERSION=$(cat VERSION)
 BUCKET=$AWS_S3_BUCKET
 BUCKET=$AWS_S3_BUCKET