Skip to content

Commit 108c9cd

Browse files
committed
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 <[email protected]>
1 parent 39b6ba8 commit 108c9cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ script:
6060
- script/validate/vendor
6161
- go build -i .
6262
- make check
63-
- if [[ "$GOOS" = "linux" && "$TRAVIS_GO_VERSION" != "1.9"* ]]; then make check-protos check-api-descriptors; fi
63+
- if [ "$GOOS" = "linux" ]; then make check-protos check-api-descriptors; fi
6464
- make build
6565
- make binaries
6666
- if [ "$GOOS" = "linux" ]; then sudo make install ; fi

0 commit comments

Comments
 (0)