Travis CI не удалось установить Go - PullRequest
0 голосов
/ 25 апреля 2020

Я использую Travis CI, при коммите он не собирает модуль должным образом и выдает следующую ошибку:

0.52s$ git clone --depth=50 --branch=master https://github.com/kadnan/gkeevee.git kadnan/gkeevee
$ travis_export_go 1.14 github.com/kadnan/gkeevee
0.01s
Setting environment variables from .travis.yml
$ export GO111MODULE=on
$ export GOFLAGS='-mod vendor'
150.68s$ travis_setup_go
I don't have any idea what to do with '1.14'.
  (using download type 'auto')
Failed to run gimme
The command "travis_setup_go" failed and exited with 86 during .

Ниже мой travis.yml:

language: go

env: GO111MODULE=on GOFLAGS='-mod vendor'

go:
    1.14

install: true

notifications:
    email: false

script:
    - go test -v
...