Skip to content

Commit 8687b65

Browse files
committed
leverage build-with-container in "make tar"
Beacuse of start/stop of a VM, a tar build can take 4 minutes. When using a docker container, when previously compiled only needs 10s (30s if netplugin src updated) Add target to export tar from container build to local directory Signed-off-by: Chris Plock <[email protected]>
1 parent 9f6e8e7 commit 8687b65

File tree

2 files changed

+21
-8
lines changed

2 files changed

+21
-8
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
##
1515

1616
##
17-
# Container image for netplugin
17+
# Container image for compiled netplugin binaries
1818
#
1919
# Run netplugin:
2020
# docker run --net=host <image> -host-label=<label>
2121
##
2222

2323
FROM golang:1.7.6
2424

25-
# Insert your proxy server settings if this build is running behind
25+
# Insert your proxy server settings if this build is running behind
2626
# a proxy.
2727
#ENV http_proxy ""
2828
#ENV https_proxy ""

Makefile

+19-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
.PHONY: all all-CI build clean default unit-test release tar checks go-version gofmt-src \
32
golint-src govet-src run-build compile-with-docker
43

@@ -16,6 +15,8 @@ NAME := netplugin
1615
VERSION_FILE := $(NAME)-version
1716
VERSION := `cat $(VERSION_FILE)`
1817
TAR_EXT := tar.bz2
18+
# BUILD_VERSION=1.2 make --> 1.2-1097d2a7, otherwise devbuild-1097d2a7
19+
export NETPLUGIN_CONTAINER_TAG := $(or $(BUILD_VERSION),devbuild)-$(shell ./scripts/getGitCommit.sh)
1920
TAR_FILENAME := $(NAME)-$(VERSION).$(TAR_EXT)
2021
TAR_LOC := .
2122
TAR_FILE := $(TAR_LOC)/$(TAR_FILENAME)
@@ -314,11 +315,23 @@ host-plugin-release:
314315
@echo dev: need docker login with user in contiv org
315316
docker plugin push ${CONTIV_V2PLUGIN_NAME}
316317

317-
only-tar:
318-
319-
tar: clean-tar
320-
CONTIV_NODES=1 ${MAKE} build
321-
@tar -jcf $(TAR_FILE) -C $(GOPATH)/src/github.com/contiv/netplugin/bin netplugin netmaster netctl contivk8s netcontiv -C $(GOPATH)/src/github.com/contiv/netplugin/scripts contrib/completion/bash/netctl -C $(GOPATH)/src/github.com/contiv/netplugin/scripts get-contiv-diags
318+
##########################
319+
## Packaging and Releasing
320+
##########################
321+
322+
# build tarball
323+
tar: compile-with-docker
324+
@# $(TAR_FILE) depends on local file netplugin-version (exists in image),
325+
@# but it is evaluated after we have extracted that file to local disk
326+
docker rm netplugin-build || :
327+
c_id=$$(docker create --name netplugin-build netplugin-build:$(NETPLUGIN_CONTAINER_TAG)) && \
328+
docker cp $${c_id}:/go/src/github.com/contiv/netplugin/netplugin-version ./ && \
329+
for f in netplugin netmaster netctl contivk8s netcontiv; do \
330+
docker cp $${c_id}:/go/bin/$$f bin/$$f; done && \
331+
docker rm $${c_id}
332+
tar -jcf $(TAR_FILE) \
333+
-C bin netplugin netmaster netctl contivk8s netcontiv \
334+
-C ../scripts contrib/completion/bash/netctl get-contiv-diags
322335

323336
clean-tar:
324337
@rm -f $(TAR_LOC)/*.$(TAR_EXT)

0 commit comments

Comments
 (0)