From 09414d0b095d32c6c0e1c3d7f2288e26158675c2 Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Fri, 22 Jun 2018 16:13:26 +0200 Subject: [PATCH] Set explict versions in Travis Set explicit versions in Travis configuration to fix deploy step. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bdd2e61..675d33d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ --- language: go go: -- 1.9.x -- 1.10.x +- 1.9.7 +- 1.10.3 install: - go get honnef.co/go/tools/cmd/megacheck @@ -13,6 +13,7 @@ install: github.com/onsi/ginkgo/ginkgo github.com/onsi/gomega/... - export PATH=$PATH:$HOME/gopath/bin +- echo $TRAVIS_GO_VERSION before_deploy: - make build @@ -25,5 +26,5 @@ deploy: file_glob: true file: binaries/* on: - go: 1.10.1 + go: 1.10.3 tags: true