mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3e2ad6ffee
These start up much faster and the only caveat is that we can't use "sudo" (which we don't currently use anyhow). Also, I've updated the Go version here to match what's in the Dockerfile. Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
23 lines
521 B
YAML
23 lines
521 B
YAML
# 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
|
|
|
|
# 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
|
|
|
|
# Disable the normal go build.
|
|
install: true
|
|
|
|
before_script:
|
|
- env | sort
|
|
|
|
script:
|
|
- hack/make.sh validate-dco
|
|
- hack/make.sh validate-gofmt
|
|
|
|
# vim:set sw=2 ts=2:
|