From 12914032e508c978afce03021a092eb0552d17d9 Mon Sep 17 00:00:00 2001 From: Marius Date: Mon, 20 May 2019 22:52:15 +0200 Subject: [PATCH] s3store: Exclude aws-sdk-go examples from build These examples are not compatible with old Go versions. See https://travis-ci.org/tus/tusd/jobs/535001180#L508 --- .scripts/test_all.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.scripts/test_all.sh b/.scripts/test_all.sh index bf5bb7f..45fc0d6 100755 --- a/.scripts/test_all.sh +++ b/.scripts/test_all.sh @@ -55,7 +55,8 @@ else fi # Install the AWS SDK which is explicitly not vendored -go get -u github.com/aws/aws-sdk-go/... +go get -u github.com/aws/aws-sdk-go/service/s3 +go get -u github.com/aws/aws-sdk-go/aws/... # Test all packages which are allowed on all Go versions go test $packages