Add the output of the tests to each release

This commit is contained in:
Solomon Hykes 2013-09-09 16:30:24 -07:00
parent b187cc40cd
commit 59856a20bf
1 changed files with 7 additions and 0 deletions

View File

@ -165,11 +165,18 @@ release_index() {
) | write_to_s3 s3://$BUCKET/index
}
release_test() {
if [ -e "bundles/$VERSION/test" ]; then
s3cmd --acl-public sync bundles/$VERSION/test/ s3://$BUCKET/test/
fi
}
main() {
setup_s3
release_binary
release_ubuntu
release_index
release_test
}
main