Remove Go version check in travis

containerd now only supports Go 1.10+, and travis is not
configured to run on older versions, so this check became
redundant.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2018-07-05 10:56:57 +02:00
parent 39b6ba826a
commit 108c9cd4cf
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C

View File

@ -60,7 +60,7 @@ script:
- script/validate/vendor
- go build -i .
- make check
- if [[ "$GOOS" = "linux" && "$TRAVIS_GO_VERSION" != "1.9"* ]]; then make check-protos check-api-descriptors; fi
- if [ "$GOOS" = "linux" ]; then make check-protos check-api-descriptors; fi
- make build
- make binaries
- if [ "$GOOS" = "linux" ]; then sudo make install ; fi