mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ae47f709ca
Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon)
30 lines
1 KiB
YAML
30 lines
1 KiB
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
|
|
|
|
go: 1.2
|
|
|
|
# Disable the normal go build.
|
|
install: true
|
|
|
|
before_script:
|
|
- env | sort
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq python-yaml
|
|
- git remote add upstream git://github.com/dotcloud/docker.git
|
|
- upstream=master;
|
|
if [ "$TRAVIS_PULL_REQUEST" != false ]; then
|
|
upstream=$TRAVIS_BRANCH;
|
|
fi;
|
|
git fetch --append --no-tags upstream refs/heads/$upstream:refs/remotes/upstream/$upstream
|
|
# sometimes we have upstream master already as origin/master (PRs), but other times we don't, so let's just make sure we have a completely unambiguous way to specify "upstream master" from here out
|
|
# but if it's a PR against non-master, we need that upstream branch instead :)
|
|
- sudo pip install -r docs/requirements.txt
|
|
|
|
script:
|
|
- hack/travis/dco.py
|
|
- hack/travis/gofmt.py
|
|
- make -sC docs SPHINXOPTS=-qW docs man
|
|
|
|
# vim:set sw=2 ts=2:
|