From 108c9cd4cf10b015c339990fb7ea981c55acbe4d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 5 Jul 2018 10:56:57 +0200 Subject: [PATCH] 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 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fcbf729f7..0bf0cecd6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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