tusd/.scripts/test_all.sh

28 lines
880 B
Bash
Executable File

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