From 3cff015169f5ca215a42f81650edc9f31095dd6f Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Sat, 19 Jul 2014 12:04:27 -0600 Subject: [PATCH] Adjust Travis to also compile, to test that compilation still succeeds Docker-DCO-1.1-Signed-off-by: Andrew Page (github: tianon) --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1e8d41184..d25d0b396 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,8 @@ go: 1.2.1 sudo: false # Disable the normal go build. -install: true +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") before_script: - env | sort @@ -19,5 +20,6 @@ before_script: script: - hack/make.sh validate-dco - hack/make.sh validate-gofmt + - AUTO_GOPATH=1 ./hack/make.sh dynbinary # vim:set sw=2 ts=2: