From 471adb73a9c3a23ac7c599621531b5fada1a127f Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Mon, 3 Nov 2014 17:46:33 -0800 Subject: [PATCH 1/2] Remove travis CI. Docker-DCO-1.1-Signed-off-by: Jessica Frazelle (github: jfrazelle) --- .travis.yml | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 174afae88a..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,39 +0,0 @@ -# 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: -# This should match the version in the Dockerfile. - - 1.3.1 -# Test against older versions too, just for a little extra retrocompat. - - 1.2 - -# 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: - - export DOCKER_BUILDTAGS='exclude_graphdriver_btrfs exclude_graphdriver_devicemapper' # btrfs and devicemapper fail to compile thanks to a couple missing headers (which we can't install thanks to "sudo: false") - - export AUTO_GOPATH=1 -# some of Docker's unit tests don't work inside Travis (yet!), so we purge those test files for now - - rm -f daemon/graphdriver/btrfs/*_test.go # fails to compile (missing header) - - rm -f daemon/graphdriver/devmapper/*_test.go # fails to compile (missing header) - - rm -f daemon/execdriver/lxc/*_test.go # fails to run (missing "lxc-start") - - rm -f daemon/graphdriver/aufs/*_test.go # fails to run ("backing file system is unsupported for this graph driver") - - rm -f daemon/graphdriver/vfs/*_test.go # fails to run (not root, which these tests assume "/var/tmp/... no owned by uid 0") - - rm -f daemon/networkdriver/bridge/*_test.go # fails to run ("Failed to initialize network driver") - - rm -f graph/*_test.go # fails to run ("mkdir /tmp/docker-test.../vfs/dir/foo/etc/postgres: permission denied") - - rm -f pkg/mount/*_test.go # fails to run ("permission denied") - -before_script: - - env | sort - -script: - - hack/make.sh validate-dco - - hack/make.sh validate-gofmt - - DOCKER_CLIENTONLY=1 ./hack/make.sh dynbinary - - ./hack/make.sh dynbinary dyntest-unit - -# vim:set sw=2 ts=2: From 4b4b88a8730b459944b0b0ab51adc7d401c87667 Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Mon, 3 Nov 2014 17:48:50 -0800 Subject: [PATCH 2/2] Switch travis status to drone. Docker-DCO-1.1-Signed-off-by: Jessica Frazelle (github: jfrazelle) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 857cd3c70a..2d143a6d6e 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,7 @@ Contributing to Docker ====================== [![GoDoc](https://godoc.org/github.com/docker/docker?status.png)](https://godoc.org/github.com/docker/docker) -[![Travis](https://travis-ci.org/docker/docker.svg?branch=master)](https://travis-ci.org/docker/docker) +[![Build Status](https://ci.dockerproject.com/github.com/docker/docker/status.svg?branch=master)](https://ci.dockerproject.com/github.com/docker/docker) Want to hack on Docker? Awesome! There are instructions to get you started [here](CONTRIBUTING.md).