Skip to content

Commit d125eb7

Browse files
authored
version is based on git state or BUILD_VERSION (#1042)
Git version to be calculated by 'git describe --tags --always' and add '-unsupported' when the local workspace has an uncommitted change. the rules are: * BUILD_VERSION will override any calculated version if set as env/make cli variable * if current commit is tagged, use just the tag * else <tag>-<num commits since>-g<commit id> release target will use CURRENT_VERSION to make it simple to set in the release branch Remove unused netplugin-version artifact Signed-off-by: Chris Plock <[email protected]>
1 parent e6df792 commit d125eb7

File tree

4 files changed

+58
-55
lines changed

4 files changed

+58
-55
lines changed

Makefile

+21-22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
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)
43

54

65
.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
1413
HOST_GOBIN := `if [ -n "$$(go env GOBIN)" ]; then go env GOBIN; else dirname $$(which go); fi`
1514
HOST_GOROOT := `go env GOROOT`
1615
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)
2217
TAR_EXT := tar.bz2
23-
NETPLUGIN_CONTAINER_TAG := $(shell ./scripts/getGitCommit.sh)
18+
NETPLUGIN_CONTAINER_TAG := $(shell ./scripts/getGitVersion.sh)
2419
TAR_FILENAME := $(NAME)-$(VERSION).$(TAR_EXT)
2520
TAR_LOC := .
2621
TAR_FILE := $(TAR_LOC)/$(TAR_FILENAME)
@@ -97,17 +92,16 @@ checks-with-docker:
9792

9893
compile:
9994
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
10397

10498
# fully prepares code for pushing to branch, includes building binaries
10599
run-build: deps checks clean compile
106100

107101
compile-with-docker:
108102
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) \
111105
-t netplugin-build:$(NETPLUGIN_CONTAINER_TAG) .
112106

113107
build-docker-image: start
@@ -328,11 +322,8 @@ host-plugin-release:
328322

329323
# build tarball
330324
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
333325
docker rm netplugin-build || :
334326
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 ./ && \
336327
for f in netplugin netmaster netctl contivk8s netcontiv; do \
337328
docker cp $${c_id}:/go/bin/$$f bin/$$f; done && \
338329
docker rm $${c_id}
@@ -342,11 +333,19 @@ tar: compile-with-docker
342333

343334
clean-tar:
344335
@rm -f $(TAR_LOC)/*.$(TAR_EXT)
345-
@rm -f ${VERSION_FILE}
346336

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} \
351340
NIGHTLY_RELEASE=${NIGHTLY_RELEASE} scripts/release.sh
352341
@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

RELEASE.md

+3-15
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,9 @@ You'll find a few examples below:
3838

3939
Please keep in mind that the release notes can be updated on GitHub manually.
4040

41-
BUILD_VERSION can be used to override the version specified in
42-
version/CURRENT_VERSION. This variable should be used to avoid changing
43-
the version for every single beta/rc release.
44-
45-
BUILD_VERSION shouln't be used to override the version for actual
41+
BUILD_VERSION will not override the version for actual
4642
releases (1.0, 1.0.1, 1.1.0 and so on).
4743

48-
Automated nightly releases use the version from version/CURRENT_VERSION.
49-
These nightly releases also append a timestamp to the version found in
50-
that file.
51-
5244
The release process can be found below.
5345

5446
1. Check out the right branch and the right commit. This is necessary
@@ -61,20 +53,16 @@ release isn't made from the HEAD of master.
6153
git push origin 1.0.1
6254
```
6355

64-
3. Write down the BUILD_VERSION or update version/CURRENT_VERSION. This
65-
will be needed for the next steps. Please refer to the explanation
66-
related to BUILD_VERSION and version/CURRENT_VERSION above.
56+
3. Update version/CURRENT_VERSION. This will be needed for the next steps.
6757

6858
4. Make sure GITHUB_USER and GITHUB_TOKEN variables are exported in your environment.
6959

7060
5. Make the release to GitHub.
7161
```
72-
# BUILD_VERSION is used to override version/CURRENT_VERSION
73-
OLD_VERSION=1.1.0-beta.1 BUILD_VERSION=1.1.0-beta.2 make release
62+
OLD_VERSION=1.1.0-beta.1 make release
7463
```
7564

7665
```
77-
# version/CURRENT_VERSION is used for a new stable release
7866
# version/CURRENT_VERSION is 1.1.1
7967
OLD_VERSION=1.1.0 make release
8068
```

scripts/build.sh

+2-18
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,12 @@
22

33
set -euxo pipefail
44

5-
BUILD_TIME=$(date -u +%m-%d-%Y.%H-%M-%S.UTC)
6-
VERSION=$(cat version/CURRENT_VERSION | tr -d '\n')
7-
PKG_NAME=github.com/contiv/netplugin/version
8-
9-
# BUILD_VERSION overrides the version from CURRENT_VERSION
10-
if [ -n "$BUILD_VERSION" ]; then
11-
VERSION=$BUILD_VERSION
12-
fi
13-
14-
if [ -z "$NIGHTLY_RELEASE" ]; then
15-
BUILD_VERSION="$VERSION"
16-
else
17-
BUILD_VERSION="$VERSION-$BUILD_TIME"
18-
fi
19-
205
GIT_COMMIT=$(./scripts/getGitCommit.sh)
216

22-
echo $BUILD_VERSION >$VERSION_FILE
23-
7+
PKG_NAME=github.com/contiv/netplugin/version
248
GOGC=1500 go install -v \
259
-ldflags "-X $PKG_NAME.version=$BUILD_VERSION \
26-
-X $PKG_NAME.buildTime=$BUILD_TIME \
10+
-X $PKG_NAME.buildTime=$(date -u +%m-%d-%Y.%H-%M-%S.UTC) \
2711
-X $PKG_NAME.gitCommit=$GIT_COMMIT \
2812
-s -w" \
2913
$TO_BUILD

scripts/getGitVersion.sh

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
BUILD_VERSION=${BUILD_VERSION:-}
6+
NIGHTLY_RELEASE=${NIGHTLY_RELEASE:-}
7+
8+
# calculate version
9+
if command -v git &>/dev/null && git rev-parse &>/dev/null; then
10+
GIT_COMMIT=$(git describe --tags --always 2>/dev/null || echo unknown)
11+
if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
12+
GIT_COMMIT="$GIT_COMMIT-unsupported"
13+
fi
14+
VERSION=$GIT_COMMIT
15+
else
16+
echo >&2 'error: unable to determine the git revision'
17+
exit 1
18+
fi
19+
20+
# BUILD_VERSION overrides the git calculated version
21+
if [ -n "$BUILD_VERSION" ]; then
22+
VERSION=$BUILD_VERSION
23+
fi
24+
25+
if [ -z "$NIGHTLY_RELEASE" ]; then
26+
VERSION="$VERSION"
27+
else
28+
BUILD_TIME=$(date -u +%m-%d-%Y.%H-%M-%S.UTC)
29+
VERSION="$VERSION-$BUILD_TIME"
30+
fi
31+
32+
echo $VERSION

0 commit comments

Comments
 (0)