From c680112405d4d37a2c07142722f21a9a4c588eab Mon Sep 17 00:00:00 2001 From: Manuel de Brito Fontes Date: Wed, 13 Jun 2018 12:39:34 -0400 Subject: [PATCH] Workaround https://github.com/golang/go/issues/25872 --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 40445ee44..038ad2b62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,12 @@ jobs: script: - sudo luarocks install luacheck - make luacheck - - go get golang.org/x/lint/golint + - | + go get -d golang.org/x/lint/golint + cd $GOPATH/src/golang.org/x/tools + git checkout release-branch.go1.10 + go install golang.org/x/lint/golint + cd - - make verify-all - stage: Lua Unit Test before_script: