Skip to content

Commit 4368384

Browse files
dseevrunclejack
authored andcommitted
Makefile,scripts/release.sh: change release script to match release process for other repos (auth_proxy, install)
Specifically, removed code for generating and uploading tarballs to Github and replaced it with a tag-based release system. Changes to the Contiv release process necessitated the alignment of the USE_RELEASE variable in scripts/release.sh with the other projects' release.sh files. Signed-off-by: Bill Robinson <[email protected]>
1 parent 48a0e6d commit 4368384

File tree

2 files changed

+21
-42
lines changed

2 files changed

+21
-42
lines changed

Makefile

+1-17
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ NAME := netplugin
1515
VERSION_FILE := $(NAME)-version
1616
VERSION := `cat $(VERSION_FILE)`
1717
TAR_EXT := tar.bz2
18-
TAR_FILENAME := $(NAME)-$(VERSION).$(TAR_EXT)
19-
TAR_LOC := .
20-
TAR_FILE := $(TAR_LOC)/$(TAR_FILENAME)
2118
GO_MIN_VERSION := 1.7
2219
GO_MAX_VERSION := 1.8
2320
GO_VERSION := $(shell go version | cut -d' ' -f3 | sed 's/go//')
@@ -321,20 +318,7 @@ host-plugin-release:
321318
@echo dev: (need docker login with user in contiv org)
322319
docker plugin push ${CONTIV_V2PLUGIN_NAME}
323320

324-
only-tar:
325-
326-
tar: clean-tar
327-
CONTIV_NODES=1 ${MAKE} build
328-
@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
329-
330-
clean-tar:
331-
@rm -f $(TAR_LOC)/*.$(TAR_EXT)
332-
@rm -f ${VERSION_FILE}
333-
334321
# GITHUB_USER and GITHUB_TOKEN are needed be set to run github-release
335-
release: tar
336-
TAR_FILENAME=$(TAR_FILENAME) TAR_FILE=$(TAR_FILE) VERSION=$(VERSION) \
322+
release:
337323
OLD_VERSION=${OLD_VERSION} BUILD_VERSION=${BUILD_VERSION} \
338324
USE_RELEASE=${USE_RELEASE} scripts/release.sh
339-
@make clean-tar
340-

scripts/release.sh

+20-25
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,33 @@
11
#!/bin/bash
2-
3-
set -euo pipefail
4-
5-
if [ -z "${VERSION-}" ]; then
6-
echo "VERSION needs to be defined to make a release"
2+
# Assumes following variables to be defined:
3+
# OLD_VERSION - previous version against which to create changelog
4+
# BUILD_VERSION - new version being released
5+
# GITHUB_USER - contiv
6+
# GITHUB_TOKEN - your github token
7+
# USE_RELEASE - if 0 or not set, will make a pre-release
8+
9+
if [ -z "$(which github-release)" ]; then
10+
echo "Please install github-release before running this script"
11+
echo "You may download a release from https://github.com/aktau/github-release/releases or run 'go get github.com/aktau/github-release' if you have Go installed"
712
exit 1
813
fi
914

10-
if [ -z "${TAR_FILENAME-}" ]; then
11-
echo "TAR_FILENAME needs to be defined to make a release"
15+
if [ -z "$BUILD_VERSION" ]; then
16+
echo "A release requires BUILD_VERSION to be defined"
1217
exit 1
1318
fi
1419

15-
if [ ! -f "$TAR_FILE" ]; then
16-
echo "TAR_FILE ($TAR_FILE) doesn't exist"
20+
if [ -z "$OLD_VERSION" ]; then
21+
echo "A release requires OLD_VERSION to be defined"
1722
exit 1
1823
fi
1924

20-
if [ -n "$USE_RELEASE" ]; then
21-
if [ -z "$OLD_VERSION" ]; then
22-
echo "A release requires OLD_VERSION to be defined"
23-
exit 1
24-
fi
25-
if [ "$OLD_VERSION" != "none" ]; then
26-
comparison="$OLD_VERSION..HEAD"
27-
fi
28-
pre_release=""
29-
else
30-
latest_tag=$(git tag | egrep -v "^v" | grep UTC | sort -V | tail -1)
25+
if [ "$OLD_VERSION" != "none" ]; then
26+
comparison="$OLD_VERSION..HEAD"
27+
fi
3128

32-
comparison="$latest_tag..HEAD"
33-
echo "Making a pre-release..."
29+
if [ "$USE_RELEASE" != "1" ]; then
30+
echo "Making a pre-release.."
3431
pre_release="-p"
3532
fi
3633

@@ -46,6 +43,4 @@ else
4643
fi
4744

4845
set -x
49-
( (github-release -v release $pre_release -r netplugin -t $VERSION -d "**Changelog**<br/>$changelog") \
50-
&& (github-release -v upload -r netplugin -t $VERSION -n $TAR_FILENAME -f $TAR_FILE \
51-
|| github-release -v delete -r netplugin -t $VERSION)) || exit 1
46+
( (github-release -v release $pre_release -r netplugin -t $BUILD_VERSION -d "**Changelog**<br/>$changelog")) || exit 1

0 commit comments

Comments
 (0)