-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.sh
executable file
·173 lines (141 loc) · 5.63 KB
/
release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/bin/sh
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
function fail_noclear {
>&2 echo " FATAL ERROR:
------------------
$1"
exit 1
}
function getProjectVersionFromPom {
cat << EOF | xmllint --noent --shell pom.xml | grep content | cut -f2 -d=
setns pom=http://maven.apache.org/POM/4.0.0
xpath /pom:project/pom:version/text()
EOF
}
REPO=""
BRANCH=""
if [[ $# -eq 2 ]]; then
REPO=$1
BRANCH=$2
else
fail_noclear "Please use ./release.sh YOUR_GIT_REPO YOUR_BRANCH_NAME."
fi
echo "Remote repo is: $REPO, branch is: $BRANCH"
read -p "Input the local directory to work on (default is $BRANCH): " DIR_NAME
DIR_NAME=${DIR_NAME:-$BRANCH}
echo $DIR_NAME
if [ -d $DIR_NAME ]; then
#fail_noclear "$DIR_NAME exist, please use a new name."
echo "$DIR_NAME exist, going on."
else
#echo "$DIR_NAME exist, try to remove it."
#rm -rf $DIR_NAME
git clone -b $BRANCH $REPO $DIR_NAME
if [ $? -ne 0 ]; then
fail_noclear "git clone -b $BRANCH $REPO $DIR_NAME failed."
fi
fi
cd $DIR_NAME
VERSION=$(getProjectVersionFromPom)
ORIGIN_VERSION="$VERSION"
while [[ ! $VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+(-M[0-9]+)?$ ]]
do
read -p "Version to release (in pom now is $VERSION): " -e t1
if [ -n "$t1" ]; then
VERSION="$t1"
fi
done
TAG=dubbo-$VERSION
echo $TAG
# get last commit id
COMMIT_ID=`git rev-parse HEAD`
echo $COMMIT_ID
major_version=$(expr $VERSION : '\(.*\)\..*\..*')
minor_version=$(expr $VERSION : '.*\.\(.*\)\..*')
bugfix_version=$(expr $VERSION : '.*\..*\.\(.*\)')
next_version="$major_version.$minor_version.$(expr $bugfix_version + 1)-SNAPSHOT"
previous_minor_version=$(expr $bugfix_version - 1)
if [ $previous_minor_version -lt 0 ] ; then
previous_version="$major_version.$minor_version.0-SNAPSHOT"
else
previous_version="$major_version.$minor_version.$(expr $bugfix_version - 1)"
fi
echo $major_version $minor_version $bugfix_version $next_version $previous_minor_version $previous_version
read -p "Need to run mvn clean install -Prelease -Dmaven.test.skip=false ? (y/n, default is n) " NEED_INSTALL
echo $NEED_INSTALL
if [ "$NEED_INSTALL" = "y" ]; then
echo "Start to mvn clean install"
mvn clean install -Prelease -Dmaven.test.skip=false
else
echo "Skip mvn clean install -Prelease -Dmaven.test.skip=false"
fi
read -p "Need to run mvn deploy $ORIGIN_VERSION to central repo ? (y/n, default is n) " NEED_DEPLOY
if [ "$NEED_DEPLOY" = "y" ]; then
echo "Start to run mvn deploy SNAPSHOT"
mvn deploy -Dmaven.test.skip=true
else
echo "Skip deploy SNAPSHOT"
fi
echo "Start to run mvn release:clean..."
mvn release:clean
# remove local/remote tag
echo "Delete local tag $TAG"
git tag --delete $TAG
read -p "Operate remote $BRANCH-staging and tag $TAG ? (y/n, default is n) " FORCE_DELETE
if [ "$FORCE_DELETE" = "y" ]; then
echo "Delete remote $BRANCH-staging and tag $TAG"
git push origin --delete $TAG
git push origin --delete $BRANCH-staging
fi
echo "Start to run mvn release:prepare..."
read -p "Input your github username: " USER_NAME
mvn release:prepare -Prelease -Darguments="-DskipTests" -DautoVersionSubmodules=true -Dusername=$USER_NAME -DupdateWorkingCopyVersions=true -DpushChanges=false -Dtag=$TAG -DreleaseVersion=$VERSION -DdevelopmentVersion=$next_version
if [ "$FORCE_DELETE" = "y" ]; then
echo "Push local change to staging branch"
git push origin $BRANCH:$BRANCH-staging
# push tag to remote
echo "Push tag $TAG to remote"
git push origin $TAG
fi
if [ "$FORCE_DELETE" = "y" ]; then
echo "Start to run mvn release:perform..."
mvn -Prelease release:perform -Darguments="-DskipTests" -DautoVersionSubmodules=true -Dusername=$USER_NAME
else
echo "Skip release"
fi
# reset working directory
echo "Reset local repo to $COMMIT_ID"
git reset --hard $COMMIT_ID
cd distribution/target
echo "Start to shasum for bin/source.zip"
shasum -b -a 512 apache-dubbo-incubating-${VERSION}-source-release.zip >> apache-dubbo-incubating-${VERSION}-source-release.zip.sha512
shasum -b -a 512 apache-dubbo-incubating-${VERSION}-bin-release.zip >> apache-dubbo-incubating-${VERSION}-bin-release.zip.sha512
read -p "Need to push bin/source.zip to Apache svn repo ? (y/n, default is n) " NEED_PUSH_APACHE
if [ "$NEED_PUSH_APACHE" = "y" ]; then
# Need to test
svn mkdir https://dist.apache.org/repos/dist/dev/incubator/dubbo/$VERSION -m "Create $VERSION directory"
svn co --force --depth=empty https://dist.apache.org/repos/dist/dev/incubator/dubbo/$VERSION .
svn add apache-dubbo-incubating-${VERSION}-source-release.zip
svn add apache-dubbo-incubating-${VERSION}-source-release.zip.asc
svn add apache-dubbo-incubating-${VERSION}-source-release.zip.sha512
svn add apache-dubbo-incubating-${VERSION}-bin-release.zip
svn add apache-dubbo-incubating-${VERSION}-bin-release.zip.asc
svn add apache-dubbo-incubating-${VERSION}-bin-release.zip.sha512
svn commit -m "Upload dubbo-$VERSION"
echo "If this is your first release, make sure adding PUBLIC_KEY to KEYS manually."
else
echo "Skip push bin/source.zip to Apache svn repo"
fi