Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into bump_v1.2.0
Browse files Browse the repository at this point in the history
Conflicts:
	VERSION
	daemon/container.go
	daemon/daemon.go

Signed-off-by: Victor Vieux <[email protected]>
  • Loading branch information
vieux committed Aug 20, 2014
2 parents 1df87ac + b1d20c4 commit 380129d
Show file tree
Hide file tree
Showing 539 changed files with 17,895 additions and 11,216 deletions.
25 changes: 22 additions & 3 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Generate AUTHORS: git log --format='%aN <%aE>' | sort -uf
# Generate AUTHORS: hack/generate-authors.sh

# Tip for finding duplicates (besides scanning the output of AUTHORS for name
# duplicates that aren't also email duplicates): scan the output of:
# git log --format='%aE - %aN' | sort -uf

<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
Expand Down Expand Up @@ -47,8 +52,9 @@ Shih-Yuan Lee <[email protected]>
Daniel Mizyrycki <[email protected]> root <[email protected]>
Jean-Baptiste Dalido <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
Expand Down Expand Up @@ -78,3 +84,16 @@ Sridhar Ratnakumar <[email protected]> <[email protected]>
Liang-Chi Hsieh <[email protected]>
Aleksa Sarai <[email protected]>
Will Weaver <[email protected]>
Timothy Hobbs <[email protected]>
Nathan LeClaire <[email protected]> <[email protected]>
Nathan LeClaire <[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
Matthew Heon <[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
Francisco Carriedo <[email protected]>
<[email protected]> <[email protected]>
16 changes: 14 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,28 @@

language: go

go: 1.2
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: 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")
- export AUTO_GOPATH=1

before_script:
- env | sort

script:
- hack/make.sh validate-dco
- hack/make.sh validate-gofmt
- ./hack/make.sh dynbinary
- DOCKER_CLIENTONLY=1 ./hack/make.sh dynbinary

# vim:set sw=2 ts=2:
Loading

0 comments on commit 380129d

Please sign in to comment.