Merge pull request #2437 from thaJeztah/remove_go_version_check

Remove Go version check in travis
This commit is contained in:
Michael Crosby 2018-07-05 09:57:00 -04:00 committed by GitHub
commit 0b0b41298a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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