mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5202f95604
Rather than re-execing docker as the proxy, create a new command docker-proxy that is much smaller to save memory in the case where there are a lot of procies being created. Also allows the proxy to be replaced, for example in Docker for Mac we have a proxy that proxies to osx instead of locally. This is the vendoring pull for https://github.com/docker/docker/pull/23312 Signed-off-by: Justin Cormack <justin.cormack@docker.com>
108 lines
3.6 KiB
Makefile
108 lines
3.6 KiB
Makefile
.PHONY: all all-local build build-local clean cross cross-local check check-code check-format run-tests integration-tests check-local coveralls circle-ci-cross circle-ci-build circle-ci-check circle-ci
|
|
SHELL=/bin/bash
|
|
build_image=libnetworkbuild
|
|
dockerargs = --privileged -v $(shell pwd):/go/src/github.com/docker/libnetwork -w /go/src/github.com/docker/libnetwork
|
|
container_env = -e "INSIDECONTAINER=-incontainer=true"
|
|
docker = docker run --rm -it ${dockerargs} $$EXTRA_ARGS ${container_env} ${build_image}
|
|
ciargs = -e CIRCLECI -e "COVERALLS_TOKEN=$$COVERALLS_TOKEN" -e "INSIDECONTAINER=-incontainer=true"
|
|
cidocker = docker run ${dockerargs} ${ciargs} $$EXTRA_ARGS ${container_env} ${build_image}
|
|
CROSS_PLATFORMS = linux/amd64 linux/386 linux/arm windows/amd64
|
|
export PATH := $(CURDIR)/bin:$(PATH)
|
|
|
|
all: ${build_image}.created build check integration-tests clean
|
|
|
|
all-local: build-local check-local integration-tests-local clean
|
|
|
|
${build_image}.created:
|
|
docker build -f Dockerfile.build -t ${build_image} .
|
|
touch ${build_image}.created
|
|
|
|
build: ${build_image}.created
|
|
@echo "Building code... "
|
|
@${docker} ./wrapmake.sh build-local
|
|
@echo "Done building code"
|
|
|
|
build-local:
|
|
@mkdir -p "bin"
|
|
$(shell which godep) go build -tags experimental -o "bin/dnet" ./cmd/dnet
|
|
$(shell which godep) go build -o "bin/docker-proxy" ./cmd/proxy
|
|
|
|
clean:
|
|
@if [ -d bin ]; then \
|
|
echo "Removing dnet and proxy binaries"; \
|
|
rm -rf bin; \
|
|
fi
|
|
|
|
cross: ${build_image}.created
|
|
@mkdir -p "bin"
|
|
@for platform in ${CROSS_PLATFORMS}; do \
|
|
EXTRA_ARGS="-e GOOS=$${platform%/*} -e GOARCH=$${platform##*/}" ; \
|
|
echo "$${platform}..." ; \
|
|
${docker} make cross-local ; \
|
|
done
|
|
|
|
cross-local:
|
|
$(shell which godep) go build -o "bin/dnet-$$GOOS-$$GOARCH" ./cmd/dnet
|
|
$(shell which godep) go build -o "bin/docker-proxy-$$GOOS-$$GOARCH" ./cmd/proxy
|
|
|
|
check: ${build_image}.created
|
|
@${docker} ./wrapmake.sh check-local
|
|
|
|
check-code:
|
|
@echo "Checking code... "
|
|
test -z "$$(golint ./... | grep -v .pb.go: | tee /dev/stderr)"
|
|
go vet ./...
|
|
@echo "Done checking code"
|
|
|
|
check-format:
|
|
@echo "Checking format... "
|
|
test -z "$$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)"
|
|
@echo "Done checking format"
|
|
|
|
run-tests:
|
|
@echo "Running tests... "
|
|
@echo "mode: count" > coverage.coverprofile
|
|
@for dir in $$(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -type d); do \
|
|
if ls $$dir/*.go &> /dev/null; then \
|
|
pushd . &> /dev/null ; \
|
|
cd $$dir ; \
|
|
$(shell which godep) go test ${INSIDECONTAINER} -test.parallel 5 -test.v -covermode=count -coverprofile=./profile.tmp ; \
|
|
ret=$$? ;\
|
|
if [ $$ret -ne 0 ]; then exit $$ret; fi ;\
|
|
popd &> /dev/null; \
|
|
if [ -f $$dir/profile.tmp ]; then \
|
|
cat $$dir/profile.tmp | tail -n +2 >> coverage.coverprofile ; \
|
|
rm $$dir/profile.tmp ; \
|
|
fi ; \
|
|
fi ; \
|
|
done
|
|
@echo "Done running tests"
|
|
|
|
check-local: check-format check-code run-tests
|
|
|
|
integration-tests: ./bin/dnet
|
|
@./test/integration/dnet/run-integration-tests.sh
|
|
|
|
./bin/dnet:
|
|
make build
|
|
|
|
coveralls:
|
|
-@goveralls -service circleci -coverprofile=coverage.coverprofile -repotoken $$COVERALLS_TOKEN
|
|
|
|
# CircleCI's Docker fails when cleaning up using the --rm flag
|
|
# The following targets are a workaround for this
|
|
circle-ci-cross: ${build_image}.created
|
|
@mkdir -p "bin"
|
|
@for platform in ${CROSS_PLATFORMS}; do \
|
|
EXTRA_ARGS="-e GOOS=$${platform%/*} -e GOARCH=$${platform##*/}" ; \
|
|
echo "$${platform}..." ; \
|
|
${cidocker} make cross-local ; \
|
|
done
|
|
|
|
circle-ci-check: ${build_image}.created
|
|
@${cidocker} make check-local coveralls
|
|
|
|
circle-ci-build: ${build_image}.created
|
|
@${cidocker} make build-local
|
|
|
|
circle-ci: circle-ci-build circle-ci-check circle-ci-cross integration-tests
|