tusd/.scripts/test_all.sh

29 lines
888 B
Bash
Raw Normal View History

2016-09-29 22:46:05 +00:00
#!/usr/bin/env bash
set -e
# Find all packages inside the current directory, excluding the consullocker
# since this may not be run on all Go versions.
packages=$(find ./ -maxdepth 2 -name '*.go' -printf '%h\n' | sort | uniq)
packages=$(echo "$packages" | sed '/consul/d')
# Install the AWS SDK which is explicitly not vendored
go get -u -v github.com/aws/aws-sdk-go/...
2016-09-29 22:46:05 +00:00
# Test all packages which are allowed on all Go versions
go test $packages
# The consul package only supports Go1.6+ and therefore we will only run the
# corresponding tests on these versions.
goversion=$(go version)
[[ "$goversion" != *"go1.4"* ]] &&
[[ "$goversion" != *"go1.5"* ]]; then
# Install the Consul packages which are not vendored.
go get -u -v github.com/hashicorp/consul/...
2016-09-29 22:46:05 +00:00
go test ./consullocker
else
echo "Skipping tests requiring Consul which is not supported on $goversion"
fi