1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
# Copyright 2020 New Relic Corporation. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
set -x
set -e
LATEST_VERSION="go1.15"
# NOTE: Once we get rid of travis for good, this whole section can be removed
# along with the .travis.yml file.
if [[ -n "$(go version | grep $LATEST_VERSION)" ]] && [[ "$TRAVIS" == "true" ]]; then
echo "Installing updated glibc\n"
# can we get this from an actual repository?
curl -LO 'http://launchpadlibrarian.net/130794928/libc6_2.17-0ubuntu4_amd64.deb'
sudo dpkg -i libc6_2.17-0ubuntu4_amd64.deb
else
echo "Skipping glibc update\n"
fi
pwd=$(pwd)
IFS=","
for dir in $DIRS; do
cd "$pwd/$dir"
if [ -f "go.mod" ]; then
go mod edit -replace github.com/newrelic/go-agent/v3=$pwd/v3
fi
# go get is necessary for testing v2 integrations since they do not have
# a go.mod file.
if [[ $dir =~ "_integrations" ]]; then
go get -t ./...
fi
# avoid testing v3 code when testing v2 newrelic package
if [ $dir == "." ]; then
rm -rf v3/
else
# Only v3 code version 1.9+ needs GRPC dependencies
VERSION=$(go version)
V1_7="1.7"
V1_8="1.8"
V1_9="1.9"
V1_10="1.10"
V1_11="1.11"
V1_12="1.12"
if [[ "$VERSION" =~ .*"$V1_7".* || "$VERSION" =~ .*"$V1_8".* ]]; then
echo "Not installing GRPC for old versions"
elif [[ "$VERSION" =~ .*"$V1_9" || "$VERSION" =~ .*"$V1_10" || "$VERSION" =~ .*"$V1_11" || "$VERSION" =~ .*"$V1_12" ]]; then
# install v3 dependencies that support this go version
set +e
go get -u google.golang.org/grpc # this go get will fail to build
set -e
cd $GOPATH/src/google.golang.org/grpc
git checkout v1.31.0
cd -
set +e
go get -u golang.org/x/net/http2 # this go get will fail to build
set -e
cd $GOPATH/src/golang.org/x/net/http2
git checkout 7fd8e65b642006927f6cec5cb4241df7f98a2210
cd -
go get -u github.com/golang/protobuf/protoc-gen-go
else
go get -u github.com/golang/protobuf/protoc-gen-go
go get -u google.golang.org/grpc
fi
fi
go test -race -benchtime=1ms -bench=. ./...
go vet ./...
# Test again against the latest version of the dependencies to ensure that
# our instrumentation is up to date. TODO: Perhaps it is possible to
# upgrade all go.mod dependencies to latest master with a go command.
if [ -n "$EXTRATESTING" ]; then
eval "$EXTRATESTING"
go test -race -benchtime=1ms -bench=. ./...
fi
if [[ -n "$(go version | grep $LATEST_VERSION)" ]]; then
# golint requires a supported version of Go, which in practice is currently 1.9+.
# See: https://github.com/golang/lint#installation
# For simplicity, run it on a single Go version.
go get -u golang.org/x/lint/golint
# do not expect golint to be in the PATH, instead use go list to discover
# the path to the binary.
$(go list -f {{.Target}} golang.org/x/lint/golint) -set_exit_status ./...
# only run gofmt on a single version as the format changed from 1.10 to
# 1.11.
if [ -n "$(gofmt -s -l .)" ]; then
exit 1
fi
fi
done
|