Skip to content

Commit e6faad5

Browse files
committed
remove USE_RELEASE & remove release timestamp
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 9f1c79b commit e6faad5

File tree

8 files changed

+22
-25
lines changed

8 files changed

+22
-25
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ checks: go-version gofmt-src golint-src govet-src misspell-src
8787

8888
run-build: deps checks clean
8989
cd $(GOPATH)/src/github.com/contiv/netplugin && \
90-
USE_RELEASE=${USE_RELEASE} BUILD_VERSION=${BUILD_VERSION} \
90+
NIGHTLY_RELEASE=${NIGHTLY_RELEASE} BUILD_VERSION=${BUILD_VERSION} \
9191
TO_BUILD="${TO_BUILD}" VERSION_FILE=${VERSION_FILE} \
9292
scripts/build.sh
9393

@@ -335,5 +335,5 @@ clean-tar:
335335
release: tar
336336
TAR_FILENAME=$(TAR_FILENAME) TAR_FILE=$(TAR_FILE) \
337337
OLD_VERSION=${OLD_VERSION} BUILD_VERSION=${BUILD_VERSION} \
338-
USE_RELEASE=${USE_RELEASE} scripts/release.sh
338+
NIGHTLY_RELEASE=${NIGHTLY_RELEASE} scripts/release.sh
339339
@make clean-tar

RELEASE.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@ The GITHUB_USER and GITHUB_TOKEN environment variables need to be set up.
1313
Automated releases are done using the scripts/REL.sh script. This script
1414
will prepare and release binaries to GitHub.
1515

16-
The timestamp is appended to the release version.
16+
The timestamp is appended to the release version if NIGHTLY_RELEASE=1 is
17+
passed as an environment variable on build.
1718

1819
An example of a such release tag is "1.0.0-beta-01-31-2017.21-11-13.UTC".
1920

21+
Releases are marked as pre-releases by default. The pre-release needs to
22+
be marked by hand as a release.
2023

2124
### Manual releases
2225

@@ -26,11 +29,11 @@ need to be provided manually.
2629
You'll find a few examples below:
2730

2831
# version/CURRENT_VERSION is 1.0.1
29-
$ USE_RELEASE=1 OLD_VERSION=1.0 make release
32+
$ OLD_VERSION=1.0 make release
3033
# will release version 1.0.1 on GitHub
3134

3235
# version/CURRENT_VERSION is 1.0
33-
$ USE_RELEASE=1 OLD_VERSION=none make release
36+
$ OLD_VERSION=none make release
3437
# will release version 1.0 when no previous stable release exists
3538

3639
Please keep in mind that the release notes can be updated on GitHub manually.
@@ -67,13 +70,13 @@ related to BUILD_VERSION and version/CURRENT_VERSION above.
6770
5. Make the release to GitHub.
6871
```
6972
# BUILD_VERSION is used to override version/CURRENT_VERSION
70-
USE_RELEASE=1 OLD_VERSION=1.1.0-beta.1 BUILD_VERSION=1.1.0-beta.2 make release
73+
OLD_VERSION=1.1.0-beta.1 BUILD_VERSION=1.1.0-beta.2 make release
7174
```
7275

7376
```
7477
# version/CURRENT_VERSION is used for a new stable release
7578
# version/CURRENT_VERSION is 1.1.1
76-
USE_RELEASE=1 OLD_VERSION=1.1.0 make release
79+
OLD_VERSION=1.1.0 make release
7780
```
7881

7982
## Build and upload container image (manual only)

Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ build_version = ENV['BUILD_VERSION'] || ''
2525
cluster_ip_nodes = ''
2626
v2plugin_name = ENV['CONTIV_V2PLUGIN_NAME'] || 'contiv/v2netplugin:0.1'
2727
cluster_store = ENV['CONTIV_CLUSTER_STORE'] || 'etcd://localhost:2379'
28-
use_release = ENV['USE_RELEASE'] || ''
28+
nightly_release = ENV['NIGHTLY_RELEASE'] || ''
2929
node_os = ENV['CONTIV_NODE_OS'] || 'centos'
3030
base_ip = ENV['CONTIV_IP_PREFIX'] || '192.168.2.'
3131
num_nodes = ENV['CONTIV_NODES'].to_i == 0 ? 3 : ENV['CONTIV_NODES'].to_i
@@ -41,7 +41,7 @@ export GOSRC=\\\$GOPATH/src
4141
export PATH=\\\$PATH:/usr/local/go/bin:\\\$GOBIN
4242
export http_proxy='#{http_proxy}'
4343
export https_proxy='#{https_proxy}'
44-
export USE_RELEASE=#{use_release}
44+
export NIGHTLY_RELEASE=#{nightly_release}
4545
export no_proxy=%{cluster_ip_nodes},127.0.0.1,localhost,netmaster
4646
export CLUSTER_NODE_IPS=%{cluster_ip_nodes}
4747
export CONTIV_CLUSTER_STORE=#{cluster_store}

scripts/build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ if [ -n "$BUILD_VERSION" ]; then
99
VERSION=$BUILD_VERSION
1010
fi
1111

12-
if [ -z "$USE_RELEASE" ]; then
13-
BUILD_VERSION="$VERSION-$BUILD_TIME"
14-
else
12+
if [ -z "$NIGHTLY_RELEASE" ]; then
1513
BUILD_VERSION="$VERSION"
14+
else
15+
BUILD_VERSION="$VERSION-$BUILD_TIME"
1616
fi
1717

1818
if command -v git &>/dev/null && git rev-parse &>/dev/null; then

scripts/release.sh

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# BUILD_VERSION - new version being released
55
# GITHUB_USER - contiv
66
# GITHUB_TOKEN - your github token
7-
# USE_RELEASE - if 0 or not set, will make a pre-release
87

98
if [ -z "$(which github-release)" ]; then
109
echo "Please install github-release before running this script"
@@ -37,11 +36,6 @@ if [ "$OLD_VERSION" != "none" ]; then
3736
comparison="$OLD_VERSION..HEAD"
3837
fi
3938

40-
if [ "$USE_RELEASE" != "1" ]; then
41-
echo "Making a pre-release.."
42-
pre_release="-p"
43-
fi
44-
4539
if [ "$OLD_VERSION" != "none" ]; then
4640
changelog=$(git log $comparison --oneline --no-merges --reverse)
4741

@@ -54,6 +48,6 @@ else
5448
fi
5549

5650
set -x
57-
( (github-release -v release $pre_release -r netplugin -t $BUILD_VERSION -d "**Changelog**<br/>$changelog") \
51+
( (github-release -v release --pre-release -r netplugin -t $BUILD_VERSION -d "**Changelog**<br/>$changelog") \
5852
&& (github-release -v upload -r netplugin -t $BUILD_VERSION -n $TAR_FILENAME -f $TAR_FILE \
5953
|| github-release -v delete -r netplugin -t $BUILD_VERSION)) || exit 1

vagrant/mesos-cni/Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ echo 'export GOSRC=$GOPATH/src' >> /etc/profile.d/envvar.sh
2222
echo 'export PATH=$PATH:/usr/local/go/bin:$GOBIN' >> /etc/profile.d/envvar.sh
2323
echo "export http_proxy='$4'" >> /etc/profile.d/envvar.sh
2424
echo "export https_proxy='$5'" >> /etc/profile.d/envvar.sh
25-
echo "export USE_RELEASE=$6" >> /etc/profile.d/envvar.sh
25+
echo "export NIGHTLY_RELEASE=$6" >> /etc/profile.d/envvar.sh
2626
echo "export no_proxy=$3,127.0.0.1,localhost,netmaster" >> /etc/profile.d/envvar.sh
2727
echo "export CLUSTER_NODE_IPS=$3" >> /etc/profile.d/envvar.sh
2828
echo "export CONTIV_CLUSTER_STORE=$7" >> /etc/profile.d/envvar.sh
@@ -166,7 +166,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
166166
end
167167
node.vm.provision "shell" do |s|
168168
s.inline = provision_common_once
169-
s.args = [node_name, node_addr, cluster_ip_nodes, ENV["http_proxy"] || "", ENV["https_proxy"] || "", ENV["USE_RELEASE"] || "", ENV["CONTIV_CLUSTER_STORE"] || "etcd://localhost:2379", ENV["CONTIV_DOCKER_VERSION"] || "", ENV['CONTIV_NODE_OS'] || "", *ENV['CONTIV_ENV']]
169+
s.args = [node_name, node_addr, cluster_ip_nodes, ENV["http_proxy"] || "", ENV["https_proxy"] || "", ENV["NIGHTLY_RELEASE"] || "", ENV["CONTIV_CLUSTER_STORE"] || "etcd://localhost:2379", ENV["CONTIV_DOCKER_VERSION"] || "", ENV['CONTIV_NODE_OS'] || "", *ENV['CONTIV_ENV']]
170170
end
171171
node.vm.provision "shell", run: "always" do |s|
172172
s.inline = provision_common_always

vagrant/mesos-docker/Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ echo "export http_proxy='$4'" >> /etc/profile.d/envvar.sh
5353
echo "export https_proxy='$5'" >> /etc/profile.d/envvar.sh
5454
echo "export no_proxy=192.168.2.10,192.168.2.11,127.0.0.1,localhost,netmaster" >> /etc/profile.d/envvar.sh
5555
echo "export CLUSTER_NODE_IPS=192.168.2.10,192.168.2.11" >> /etc/profile.d/envvar.sh
56-
echo "export USE_RELEASE=$6" >> /etc/profile.d/envvar.sh
56+
echo "export NIGHTLY_RELEASE=$6" >> /etc/profile.d/envvar.sh
5757
5858
5959
source /etc/profile.d/envvar.sh
@@ -153,7 +153,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
153153
end
154154
node.vm.provision "shell" do |s|
155155
s.inline = provision_common
156-
s.args = [node_name, ENV["CONTIV_NODE_OS"] || "", node_addr, ENV["http_proxy"] || "", ENV["https_proxy"] || "", ENV["USE_RELEASE"] || "", *ENV['CONTIV_ENV']]
156+
s.args = [node_name, ENV["CONTIV_NODE_OS"] || "", node_addr, ENV["http_proxy"] || "", ENV["https_proxy"] || "", ENV["NIGHTLY_RELEASE"] || "", *ENV['CONTIV_ENV']]
157157
end
158158
provision_node = <<SCRIPT
159159
## start etcd with generated config

vagrant/nomad-docker/Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ echo 'export GOSRC=$GOPATH/src' >> /etc/profile.d/envvar.sh
2222
echo 'export PATH=$PATH:/usr/local/go/bin:$GOBIN' >> /etc/profile.d/envvar.sh
2323
echo "export http_proxy='$4'" >> /etc/profile.d/envvar.sh
2424
echo "export https_proxy='$5'" >> /etc/profile.d/envvar.sh
25-
echo "export USE_RELEASE=$6" >> /etc/profile.d/envvar.sh
25+
echo "export NIGHTLY_RELEASE=$6" >> /etc/profile.d/envvar.sh
2626
echo "export no_proxy=$3,127.0.0.1,localhost,netmaster" >> /etc/profile.d/envvar.sh
2727
echo "export CLUSTER_NODE_IPS=$3" >> /etc/profile.d/envvar.sh
2828
echo "export CONTIV_CLUSTER_STORE=$7" >> /etc/profile.d/envvar.sh
@@ -167,7 +167,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
167167
end
168168
node.vm.provision "shell" do |s|
169169
s.inline = provision_common_once
170-
s.args = [node_name, node_addr, cluster_ip_nodes, ENV["http_proxy"] || "", ENV["https_proxy"] || "", ENV["USE_RELEASE"] || "", ENV["CONTIV_CLUSTER_STORE"] || "etcd://localhost:2379", ENV["CONTIV_DOCKER_VERSION"] || "", ENV['CONTIV_NODE_OS'] || "", *ENV['CONTIV_ENV']]
170+
s.args = [node_name, node_addr, cluster_ip_nodes, ENV["http_proxy"] || "", ENV["https_proxy"] || "", ENV["NIGHTLY_RELEASE"] || "", ENV["CONTIV_CLUSTER_STORE"] || "etcd://localhost:2379", ENV["CONTIV_DOCKER_VERSION"] || "", ENV['CONTIV_NODE_OS'] || "", *ENV['CONTIV_ENV']]
171171
end
172172
node.vm.provision "shell", run: "always" do |s|
173173
s.inline = provision_common_always

0 commit comments

Comments
 (0)