-
Notifications
You must be signed in to change notification settings - Fork 387
/
release.sh
executable file
·320 lines (260 loc) · 9.72 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#!/usr/bin/env bash
set -ex
# Trying to install it for the user so he doesn't have to bother with installing stuff by hand
sudo apt-get -qq install xmlstarlet maven
# Global default vars used in this script
######################################################################################
BASE_DIR=$PWD
TEMP_DIR=$(mktemp -d)
WORK_DIR=$TEMP_DIR/elephant-bird_release
COMMAND="release"
ACTUAL_VERSION=$(xmlstarlet sel -t -v "/_:project/_:version" pom.xml)
RELEASE_VERSION=$(echo $ACTUAL_VERSION|sed 's/-SNAPSHOT//')
BASE_BRANCH=$(git rev-parse --abbrev-ref HEAD)
DIRTY_SCM=false
[email protected]:twitter/elephant-bird.git
THRIFT7_PATH="$TEMP_DIR/thrift7"
THRIFT9_PATH="$TEMP_DIR/thrift9"
HADOOP_LZO_PATH="$TEMP_DIR/hadoop-lzo-native"
PROTOBUF_PATH="$TEMP_DIR/protobuf"
######################################################################################
while [[ $# > 1 ]]; do
key="$1"
case $key in
-c|--command)
COMMAND="$2"
;;
-r|--release-version)
RELEASE_VERSION="$2"
;;
-n|--next-version)
NEXT_DEV_VERSION="$2"
;;
-d|--dirty-scm)
DIRTY_SCM="$2"
;;
*)
echo "Unknown parameter $key"
echo "Usage: ./release.sh [OPTION]
-c,--comand commandName
possible values travis|test|install|deploy|release
-r,--release-version versionNumber
will be used to deploy the artifacts and make the release branch
-n,--next-version versionNumber
will be used as the new version after the release
-d,--dirty-scm true/false
false by default, all changes must be in sync with origin"
exit 1
;;
esac
shift 2
done
#######################################################################################################################
#######################################################################################################################
#######################################################################################################################
function checkNoUncommitedChanges {
if [ "$DIRTY_SCM" == "false" ]; then
echo "Checking that there are no uncommited changes"
git diff-index --quiet origin/$BASE_BRANCH --
local RET=$?
if [ $RET != 0 ]; then
echo "You have uncommited changes, please commit and push to origin everything before deploying the doc."
exit $RET;
fi;
fi;
}
# We don't care here about updating dependencies versions as we use the project version for dependencies between modules
function updateVersions {
local PROJECT=$1
local PROJECT_POM=$1/pom.xml
local TARGET_VERSION=$2
xmlstarlet edit -L -u "/_:project/_:version" -v $TARGET_VERSION $PROJECT_POM
for MODULE in $(xmlstarlet sel -t -v "/_:project/_:modules/_:module" $PROJECT_POM); do
# update here the parent reference version
xmlstarlet edit -L -u "/_:project/_:parent/_:version" -v $TARGET_VERSION "$PROJECT/$MODULE/pom.xml"
updateVersions "$PROJECT/$MODULE" $TARGET_VERSION
done;
}
function prepareFromLocal {
if [ -d $WORK_DIR ]; then
rm -Rf $WORK_DIR
fi
mkdir $WORK_DIR
cp -R . $WORK_DIR
cd $WORK_DIR
}
function prepareFromRemote {
if [ -d $WORK_DIR ]; then
rm -Rf $WORK_DIR
fi
git clone $GIT_REPO $WORK_DIR
cd $WORK_DIR
}
# Install deps required to build and run native thrift
function gitCloneThrift {
cd $TEMP_DIR
sudo apt-get install -qq libboost-dev libboost-test-dev libboost-program-options-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev
git clone https://git-wip-us.apache.org/repos/asf/thrift.git
cd thrift
}
function installThrift7 {
git checkout 0.7.0
./bootstrap.sh
./configure --disable-gen-erl --disable-gen-hs --without-ruby --without-haskell --without-python --without-erlang --without-c_glib --without-php --without-go --prefix=$THRIFT7_PATH JAVA_PREFIX=$THRIFT7_PATH/lib/
# See https://issues.apache.org/jira/browse/THRIFT-1614 a solution would be to use two different versions of automake
# but this would be more complex. The other option is to change the include in thriftl.cc but I don't like that much either.
set +e
make install > /dev/null 2>&1
set -e
mv compiler/cpp/thrifty.hh compiler/cpp/thrifty.h
make install
make clean
}
function installThrift9 {
git checkout 0.10.0
./bootstrap.sh
./configure --disable-gen-erl --disable-gen-hs --without-ruby --without-haskell --without-python --without-erlang --without-c_glib --without-php --without-go --without-qt4 --without-qt5 --without-nodejs --prefix=$THRIFT9_PATH JAVA_PREFIX=$THRIFT9_PATH/lib/
make install
}
function installNativeThrift {
local CURR_DIR=$PWD
gitCloneThrift
installThrift7
installThrift9
cd ..
rm -Rf thrift
cd $CURR_DIR
}
function installProtobuf {
local CURR_DIR=$PWD
if [ ! -d $PROTOBUF_PATH ]; then
cd $TEMP_DIR
wget https://github.com/google/protobuf/releases/download/v2.4.1/protobuf-2.4.1.tar.gz -O - | tar -xz
cd protobuf-2.4.1
./configure --prefix=$PROTOBUF_PATH
make install
cd ..
rm -Rf protobuf-2.4.1
fi
cd $CURR_DIR
}
# Install deps required to build hadoop lzo and native libgplcompression
function installHadoopLzo {
local CURR_DIR=$PWD
if [ ! -d $HADOOP_LZO_PATH ]; then
if [ -z ${JAVA_HOME+x} ]; then
echo "Please enter a value for JAVA_HOME:"
read JAVA_HOME
fi
cd $TEMP_DIR
sudo apt-get -qq install lzop liblzo2-dev
git clone git://github.com/twitter/hadoop-lzo.git
cd hadoop-lzo
mvn compile
mv target/native/Linux-* $HADOOP_LZO_PATH
cd ..
rm -Rf hadoop-lzo
fi
cd $CURR_DIR
}
#######################################################################################################################
#######################################################################################################################
#######################################################################################################################
__MVN_THRIFT7="-Pthrift7 -Dthrift.executable=$THRIFT7_PATH/bin/thrift"
__MVN_THRIFT9="-Pthrift9 -Dthrift.executable=$THRIFT9_PATH/bin/thrift"
__MVN_HADOOP_LZO="-Dtest.library.path=$HADOOP_LZO_PATH/lib -Drequire.lzo.tests=true"
__MVN_PROTOC_EXECUTABLE="-Dprotoc.executable=$PROTOBUF_PATH/bin/protoc"
case "$COMMAND" in
"travis")
CURR_DIR_THRIFT=$PWD
gitCloneThrift
if [ $THRIFT_TAG == "0.7.0" ]; then
installThrift7
else
installThrift9
fi
cd $CURR_DIR_THRIFT
installHadoopLzo
installProtobuf
if [ $THRIFT_TAG == "0.7.0" ]; then
if [ -z $HADOOP_PROFILE ]; then
mvn clean test $__MVN_THRIFT7 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE $HADOOP_PROFILE
else
mvn clean test $__MVN_THRIFT7 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE
fi
else
if [ -z $HADOOP_PROFILE ]; then
mvn clean test $__MVN_THRIFT9 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE $HADOOP_PROFILE
else
mvn clean test $__MVN_THRIFT9 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE
fi
fi
;;
"test")
prepareFromLocal
git checkout $BASE_BRANCH
installNativeThrift
installHadoopLzo
installProtobuf
mvn clean test $__MVN_THRIFT7 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE -X
mvn clean test $__MVN_THRIFT9 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE -X
;;
"install")
echo "Will install current version"
prepareFromLocal
git checkout $BASE_BRANCH
installNativeThrift
installHadoopLzo
installProtobuf
mvn clean install $__MVN_THRIFT7 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE
mvn clean install $__MVN_THRIFT9 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE
;;
"deploy")
echo "Will deploy current version"
prepareFromLocal
git checkout $BASE_BRANCH
installNativeThrift
installHadoopLzo
installProtobuf
mvn clean deploy $__MVN_THRIFT7 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE
mvn clean deploy $__MVN_THRIFT9 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE
;;
"release")
while [ -z ${NEXT_DEV_VERSION+x} ] || [[ $NEXT_DEV_VERSION != *"-SNAPSHOT" ]]; do
echo "What is the next dev version (must be of the standard form XXX-SNAPSHOT)?"
read NEXT_DEV_VERSION
done
echo "Will run full release including: release branch, deploy artifacts and update current branch to next version"
checkNoUncommitedChanges
# Ensure our copy is fresh
git pull
# We want to make the release from the initial branch, here we are in the working copy, not the original directory
git checkout $BASE_BRANCH
installNativeThrift
installHadoopLzo
installProtobuf
# Update the version to use the release version, sync with scm and deploy
updateVersions . $RELEASE_VERSION
git add pom.xml **/pom.xml
git commit -m "[Release] - Prepare release $RELEASE_VERSION"
git tag "elephant-bird-$RELEASE_VERSION"
mvn clean deploy $__MVN_THRIFT7 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE -DperformRelease=true
mvn clean deploy $__MVN_THRIFT9 $__MVN_HADOOP_LZO $__MVN_PROTOC_EXECUTABLE -DperformRelease=true
# Update to the next development version and push those changes to master
updateVersions . $NEXT_DEV_VERSION
git add pom.xml **/pom.xml
git commit -m "[Release] - $RELEASE_VERSION, prepare for next development iteration $NEXT_DEV_VERSION"
# Until here we are supposed to be able to easily revert things as we still have our unchanged clone
cd $BASE_DIR
git pull origin $BASE_BRANCH
echo "Local tag created named elephant-bird-$RELEASE_VERSION"
echo "Local branch $BASE_BRANCH updated"
echo "Use git push origin HEAD && git push --tags"
echo "to update the remote if all looks good"
;;
*)
echo "Unknown command: $COMMAND"
exit 1;
esac
# Cleaning after us (in case of an error we want the src to remain so we can debug things)
rm -Rf $TEMP_DIR