-
Notifications
You must be signed in to change notification settings - Fork 7
/
compile.sh
executable file
·76 lines (66 loc) · 1.52 KB
/
compile.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
#!/bin/sh -e
#
printUsage() {
echo "Usage : "
echo "./compile.sh [-s | --skipTests] [-u URL | --url URL] BRANCH"
echo " -s : Skip test"
echo " -u URL : clone the given URL for retrieving sources"
echo " BRANCH : Branch to build"
exit 1
}
MODE=local
ORIGIN=/origin
DESTINATION=/destination
for arg in "$@"
do
case $arg in
-s|--skipTests)
SKIPTESTS="skipTests"
;;
-u|--url)
MODE="distant"
REPO_URL=$2
shift
;;
-*)
echo "Invalid option: -$OPTARG"
printUsage
;;
*)
if ! [ -z "$1" ]; then
BRANCH=$1
fi
;;
esac
if [ "0" -lt "$#" ]; then
shift
fi
done
if [ -z "$BRANCH" ]; then
echo "You must provide a BRANCH name"
printUsage
fi
# Sources retrieval
if [ $MODE = "local" ]; then
git clone $ORIGIN/. -b $BRANCH
for i in `git submodule | cut -d' ' -f2`; do
INITIALIZED=`cd $ORIGIN; git submodule status $i | cut -c1`
if [ "$INITIALIZED" != "-" ]; then
git config submodule.$i.url $ORIGIN/$i
fi
done
else
git clone $REPO_URL . -b $BRANCH
fi
git submodule init
git submodule update
# Compilation
if [ "$SKIPTESTS" = "skipTests" ]; then
mvn clean install -T1C -DskipTests -Pcassandra,exclude-lucene,with-assembly,with-jetm
else
mvn clean install -Pcassandra,exclude-lucene,with-assembly,with-jetm
fi
# Retrieve result
if [ $? -eq 0 ]; then
cp modules/james/app/target/james-server-app-*-app.zip $DESTINATION
fi