2019-01-18 01:50:10 +00:00
|
|
|
language: go
|
|
|
|
|
2019-05-03 10:50:21 +00:00
|
|
|
stages:
|
|
|
|
- test
|
2021-05-15 10:08:31 +00:00
|
|
|
- build
|
2019-05-03 10:50:21 +00:00
|
|
|
|
|
|
|
go:
|
|
|
|
- 1.12.x
|
2021-05-15 10:08:31 +00:00
|
|
|
- 1.13.x
|
2019-05-03 10:50:21 +00:00
|
|
|
- tip
|
|
|
|
|
2021-06-14 07:08:46 +00:00
|
|
|
env: GO111MODULE=on
|
|
|
|
|
2021-05-15 10:08:31 +00:00
|
|
|
before_install:
|
|
|
|
- go get -u github.com/kyoh86/richgo
|
|
|
|
- go get -u github.com/mitchellh/gox
|
2021-06-14 07:08:46 +00:00
|
|
|
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin latest
|
2021-05-15 10:08:31 +00:00
|
|
|
|
2019-01-18 01:50:10 +00:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- go: tip
|
2019-05-03 10:50:21 +00:00
|
|
|
include:
|
2021-05-15 10:08:31 +00:00
|
|
|
- stage: build
|
|
|
|
go: 1.13.x
|
|
|
|
script: make cobra_generator
|
2019-01-18 01:50:10 +00:00
|
|
|
|
2021-06-14 07:08:46 +00:00
|
|
|
script:
|
2021-05-15 10:08:31 +00:00
|
|
|
- make test
|