1
- # make BUILD_VERSION=1.2.3 [compile-with-docker] will set netplugin -version output
2
- # make BUILD_VERSION=1.2.3 tar will set the tar filename
3
- # default naming will otherwise be value of version/CURRENT_VERSION
1
+ # BUILD_VERSION will affect archive filenames as well as -version
2
+ # default version will be based on $(git describe --tags --always)
4
3
5
4
6
5
.PHONY : all all-CI build clean default unit-test release tar checks go-version gofmt-src \
@@ -14,13 +13,9 @@ TO_BUILD := ./netplugin/ ./netmaster/ ./netctl/netctl/ ./mgmtfn/k8splugin/contiv
14
13
HOST_GOBIN := ` if [ -n " $$ (go env GOBIN)" ]; then go env GOBIN; else dirname $$ (which go); fi `
15
14
HOST_GOROOT := ` go env GOROOT `
16
15
NAME := netplugin
17
- # We are using date based versioning, so for consistent version during a build
18
- # we evaluate and set the value of version once in a file and use it in 'tar'
19
- # and 'release' targets.
20
- VERSION_FILE := $(NAME ) -version
21
- VERSION := ` cat $( VERSION_FILE) `
16
+ VERSION := $(shell scripts/getGitVersion.sh)
22
17
TAR_EXT := tar.bz2
23
- NETPLUGIN_CONTAINER_TAG := $(shell ./scripts/getGitCommit .sh)
18
+ NETPLUGIN_CONTAINER_TAG := $(shell ./scripts/getGitVersion .sh)
24
19
TAR_FILENAME := $(NAME ) -$(VERSION ) .$(TAR_EXT )
25
20
TAR_LOC := .
26
21
TAR_FILE := $(TAR_LOC ) /$(TAR_FILENAME )
@@ -97,17 +92,16 @@ checks-with-docker:
97
92
98
93
compile :
99
94
cd $(GOPATH ) /src/github.com/contiv/netplugin && \
100
- NIGHTLY_RELEASE=${NIGHTLY_RELEASE} BUILD_VERSION=${BUILD_VERSION} \
101
- TO_BUILD=" ${TO_BUILD} " VERSION_FILE=${VERSION_FILE} \
102
- scripts/build.sh
95
+ NIGHTLY_RELEASE=${NIGHTLY_RELEASE} TO_BUILD=" ${TO_BUILD} " \
96
+ BUILD_VERSION=$(VERSION ) scripts/build.sh
103
97
104
98
# fully prepares code for pushing to branch, includes building binaries
105
99
run-build : deps checks clean compile
106
100
107
101
compile-with-docker :
108
102
docker build \
109
- --build-arg NIGHTLY_RELEASE=${ NIGHTLY_RELEASE} \
110
- --build-arg BUILD_VERSION=${BUILD_VERSION} \
103
+ --build-arg NIGHTLY_RELEASE=$( NIGHTLY_RELEASE ) \
104
+ --build-arg BUILD_VERSION=$( VERSION ) \
111
105
-t netplugin-build:$(NETPLUGIN_CONTAINER_TAG ) .
112
106
113
107
build-docker-image : start
@@ -328,11 +322,8 @@ host-plugin-release:
328
322
329
323
# build tarball
330
324
tar : compile-with-docker
331
- @# $(TAR_FILE) depends on local file netplugin-version (exists in image),
332
- @# but it is evaluated after we have extracted that file to local disk
333
325
docker rm netplugin-build || :
334
326
c_id=$$(docker create --name netplugin-build netplugin-build:$(NETPLUGIN_CONTAINER_TAG ) ) && \
335
- docker cp $$ {c_id}:/go/src/github.com/contiv/netplugin/netplugin-version ./ && \
336
327
for f in netplugin netmaster netctl contivk8s netcontiv; do \
337
328
docker cp $$ {c_id}:/go/bin/$$ f bin/$$ f; done && \
338
329
docker rm $$ {c_id}
@@ -342,11 +333,19 @@ tar: compile-with-docker
342
333
343
334
clean-tar :
344
335
@rm -f $(TAR_LOC ) /* .$(TAR_EXT )
345
- @rm -f ${VERSION_FILE}
346
336
347
- # GITHUB_USER and GITHUB_TOKEN are needed be set to run github-release
348
- release : tar
349
- TAR_FILENAME=$(TAR_FILENAME ) TAR_FILE=$(TAR_FILE ) \
350
- OLD_VERSION=${OLD_VERSION} BUILD_VERSION=${BUILD_VERSION} \
337
+ # do not run directly, use "release" target
338
+ release-built-version : tar
339
+ TAR_FILENAME=$(TAR_FILENAME ) TAR_FILE=$(TAR_FILE ) OLD_VERSION=${OLD_VERSION} \
351
340
NIGHTLY_RELEASE=${NIGHTLY_RELEASE} scripts/release.sh
352
341
@make clean-tar
342
+
343
+ # The first "release" below is not a target, it is a "target-specific variable"
344
+ # and sets (and in this case exports) a variable to the target's environment
345
+ # The second release runs make as a subshell but with BUILD_VERSION set
346
+ # to write the correct version for assets everywhere
347
+ #
348
+ # GITHUB_USER and GITHUB_TOKEN are needed be set (used by github-release)
349
+ release : export BUILD_VERSION=$(shell cat version/CURRENT_VERSION)
350
+ release :
351
+ @make release-built-version
0 commit comments