Skip to content

Commit

Permalink
internal: drop support for 1.9 and 1.10 (googleapis#201)
Browse files Browse the repository at this point in the history
As of Oct 1, 2019 GCP is no longer supporting Go 1.9 and 1.10.
Cleaning up build scripts to support this.
  • Loading branch information
codyoss committed Sep 26, 2019
1 parent b8fbc68 commit 7ee9db1
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions internal/kokoro/test.sh
Expand Up @@ -15,27 +15,18 @@ go version
export GOPATH="$HOME/go"
export GENPROTO_HOME=$GOPATH/src/google.golang.org/genproto
export PATH="$GOPATH/bin:$PATH"
export GO111MODULE=on
mkdir -p $GENPROTO_HOME


# Move code into $GOPATH and get dependencies
git clone . $GENPROTO_HOME
cd $GENPROTO_HOME

try3() { eval "$*" || eval "$*" || eval "$*"; }

download_deps() {
if [[ `go version` == *"go1.11"* ]] || [[ `go version` == *"go1.12"* ]]; then
export GO111MODULE=on
# All packages, including +build tools, are fetched.
try3 go mod download
else
# Because we don't provide -tags tools, the +build tools
# dependencies aren't fetched.
try3 go get -v -t ./...
fi
}

download_deps
# All packages, including +build tools, are fetched.
try3 go mod download
./internal/kokoro/vet.sh

# Run tests and tee output to log file, to be pushed to GCS as artifact.
Expand Down

0 comments on commit 7ee9db1

Please sign in to comment.