From c37ad6652e6b3a205d863a5cbfdb6f9ca96a3dd8 Mon Sep 17 00:00:00 2001 From: Denis Isaev Date: Mon, 27 Aug 2018 23:29:13 +0300 Subject: [PATCH] Fix #206: build golangci-lint on go1.11 --- .travis.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 982bb5e2..4741e849 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: go go: - 1.9.x - 1.10.x - # - 1.11beta2 - https://github.com/golang/go/issues/26671 + - 1.11.x script: make check_generated test after_success: @@ -21,6 +21,4 @@ deploy: on: tags: true # it's important to build on the newest version of go: - # - go1.11 type checking properly supports _wasm.go file, without that golangci-lint won't compile program with go 1.11 env - # but currently go1.11 has bugs, so we build on go1.10 - condition: $TRAVIS_GO_VERSION =~ ^1\.10\. + condition: $TRAVIS_GO_VERSION =~ ^1\.11