Skip to content

Commit ec861f6

Browse files
author
Julien Gilli
committed
build: make release process easier for multi users
Use staging area on nodejs.org instead of TJ's account. Also pushes release tag and branch to personal forks rather than joyent/node, which makes errors have less impact. Pushing release tags and branches is left as a manual step for the release managers, when they decide the timing is best. PR: #25638 PR-URL: nodejs/node-v0.x-archive#25638 Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent e5aaa34 commit ec861f6

File tree

2 files changed

+47
-16
lines changed

2 files changed

+47
-16
lines changed

tools/getstability.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import os,re
1+
import os, re, sys
22

33
node_version_h = os.path.join(os.path.dirname(__file__), '..', 'src',
44
'node_version.h')
@@ -13,7 +13,13 @@
1313
if re.match('#define NODE_PATCH_VERSION', line):
1414
patch = line.split()[2]
1515

16-
if int(minor) % 2 == 0:
16+
major_minor = major + '.' + minor
17+
if major_minor == '0.10':
18+
print 'maintenance'
19+
elif major_minor == '0.12':
1720
print 'stable'
18-
else:
21+
elif minor % 2 != 0:
1922
print 'unstable'
23+
else:
24+
print 'Unknown stability status, exiting'
25+
sys.exit(1)

tools/node-release-post-build.sh

+38-13
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,49 @@ fi
1313
stability="$(python tools/getstability.py)"
1414
NODE_STABC="$(tr '[:lower:]' '[:upper:]' <<< ${stability:0:1})${stability:1}"
1515
NODE_STABL="$stability"
16+
GITHUB_USERNAME=
17+
18+
function usage
19+
{
20+
echo "usage: sh tools/node-release-post-build.sh -u gh_username"
21+
exit 1
22+
}
23+
24+
while [ "$1" != "" ]; do
25+
case $1 in
26+
-u | --github-username ) shift
27+
GITHUB_USERNAME=$1
28+
;;
29+
* ) usage
30+
exit 1
31+
esac
32+
shift
33+
done
34+
35+
if [ "$GITHUB_USERNAME" = "" ];
36+
then
37+
usage
38+
fi
1639

1740
echo "Building for $stability"
1841

19-
scp tj@nodejs.org:archive/node/tmp/v$(python tools/getnodeversion.py)/SHASUM* .
42+
scp staging@nodejs.org:archive/node/tmp/v$(python tools/getnodeversion.py)/SHASUM* .
2043
FILES="SHASUMS SHASUMS256"
2144
for i in $FILES ; do gpg -s $i.txt; gpg --clearsign $i.txt; done
22-
scp SHASUM* tj@nodejs.org:archive/node/tmp/v$(python tools/getnodeversion.py)/
45+
scp SHASUM* staging@nodejs.org:archive/node/tmp/v$(python tools/getnodeversion.py)/
2346

2447
ssh nodejs.org mkdir -p "dist/v$(python tools/getnodeversion.py)/{x64,docs}"
2548
ssh nodejs.org ln -s ../dist/v$(python tools/getnodeversion.py)/docs docs/v$(python tools/getnodeversion.py)
2649

27-
ssh [email protected] mv /home/tj/archive/node/tmp/v$(python tools/getnodeversion.py)/* /home/node/dist/v$(python tools/getnodeversion.py)/
50+
ssh [email protected] mv /home/staging/archive/node/tmp/v$(python tools/getnodeversion.py)/* /home/node/dist/v$(python tools/getnodeversion.py)/
2851
ssh [email protected] chown -R node:other /home/node/dist/v$(python tools/getnodeversion.py)
2952

3053
# tag the release
3154
# should be the same key used to sign the shasums
3255
git tag -sm "$(bash tools/changelog-head.sh)" v$(python tools/getnodeversion.py)
3356

3457
# push to github
35-
git push [email protected]:joyent/node v$(python tools/getnodeversion.py)-release --tags
58+
git push [email protected]:$GITHUB_USERNAME/node v$(python tools/getnodeversion.py)-release --tags
3659

3760
# blog post and email
3861
make email.md
@@ -51,16 +74,18 @@ make email.md
5174
echo ""
5275
cat email.md ) > ../node-website/doc/blog/release/v$(python tools/getnodeversion.py).md
5376

54-
if [ "$stability" = "stable" ];
77+
if [ "$stability" = "unstable" ];
5578
then
56-
## this needs to happen here because the website depends on the current node
57-
## node version
58-
## this will get the api docs in the right place
59-
make website-upload
60-
BRANCH="v$(python tools/getnodeversion.py | sed -E 's#\.[0-9]+$##')"
61-
echo $(python tools/getnodeversion.py) > ../node-website/STABLE
62-
else
6379
BRANCH="master"
80+
else
81+
## This needs to happen here because the website depends on the current node
82+
## node version.
83+
if [ "$stability" = "stable" ]
84+
then
85+
echo $(python tools/getnodeversion.py) > ../node-website/STABLE
86+
fi
87+
88+
BRANCH="v$(python tools/getnodeversion.py | sed -E 's#\.[0-9]+$##')"
6489
fi
6590

6691
echo "Merging back into $BRANCH"
@@ -74,6 +99,6 @@ git merge --no-ff v$(python tools/getnodeversion.py)-release
7499
vim src/node_version.h
75100
git commit -am "Now working on "$(python tools/getnodeversion.py)
76101

77-
git push [email protected]:joyent/node $BRANCH
102+
git push [email protected]:$GITHUB_USERNAME/node $BRANCH
78103

79104
echo "Now go do the website stuff"

0 commit comments

Comments
 (0)