2013-12-04 16:47:37 -05:00
|
|
|
# Note: right now we don't use go-specific features of travis.
|
|
|
|
# Later we might automate "go test" etc. (or do it inside a docker container...?)
|
|
|
|
|
|
|
|
language: go
|
|
|
|
|
2014-07-07 12:04:23 -04:00
|
|
|
# This should match the version in the Dockerfile.
|
|
|
|
go: 1.2.1
|
|
|
|
|
|
|
|
# Let us have pretty experimental Docker-based Travis workers.
|
|
|
|
# (These spin up much faster than the VM-based ones.)
|
|
|
|
sudo: false
|
2013-12-04 16:47:37 -05:00
|
|
|
|
|
|
|
# Disable the normal go build.
|
|
|
|
install: true
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- env | sort
|
|
|
|
|
|
|
|
script:
|
2014-04-04 02:37:50 -04:00
|
|
|
- hack/make.sh validate-dco
|
|
|
|
- hack/make.sh validate-gofmt
|
2013-12-04 16:47:37 -05:00
|
|
|
|
|
|
|
# vim:set sw=2 ts=2:
|