AMD64
Go: 1.13.x
Git
vmware/terraform-provider-vmc:.travis.yml@518c5f7
dist: xenial
sudo: required
services:
- docker
language: go
go:
- "1.13.x"
env:
global: GOFLAGS=-mod=vendor
install:
# This script is used by the Travis build to install a cookie for
# go.googlesource.com so rate limits are higher when using `go get` to fetch
# packages that live there.
# See: https://github.com/golang/go/issues/12933
- bash scripts/gogetcookie.sh
script:
- make test
- make vet
#- make website-test
branches:
only:
- master
matrix:
fast_finish: true
allow_failures:
- go: tip
Build Config
{
"language": "go",
"os": [
"linux"
],
"dist": "xenial",
"sudo": true,
"services": [
"docker"
],
"go": [
"1.13.x"
],
"env": {
"global": [
{
"GOFLAGS": "-mod=vendor"
}
]
},
"install": [
"bash scripts/gogetcookie.sh"
],
"script": [
"make test",
"make vet"
],
"branches": {
"only": [
"master"
]
},
"jobs": {
"fast_finish": true,
"allow_failures": [
{
"go": "tip"
}
]
}
}