-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompile.sh
142 lines (121 loc) · 2.92 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
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
#!/bin/bash
#
# This script builds a fat jar for simulations, either using repository versions
# of the simonstrator platform or by pulling in dependencies via maven.
#
# It is also used for CI builds on the server.
#
# Bjoern Richerzhagen
#
# Copied from master on 2016-12-12
#
# $1: repo (api, overlays, peerfact)
# $2: branch
function compileMvnProject()
{
# Do we need to build the API?
if [[ $2 = "use-maven" ]]; then
# no - ensure, that local version is deleted!
rm -rf mvn-repo/maki/simonstrator-$1
echo -e "\e[92mResolving API via maven.\e[39m"
else
echo -e "\e[92mBuilding $1 via git, using branch $2.\e[39m"
git clone [email protected]:maki/simonstrator-$1.git --branch $2 --single-branch stage
STATUS=$?
if [ $STATUS -eq 0 ]; then
echo -e "\e[92mGit: OK\e[39m"
else
echo -e "\e[31mCloning the $1 via git failed. Exiting...\e[39m"
exit 1
fi
mv mvn-repo stage/
cd stage
mvn package -Dmaven.repo.local=mvn-repo -q
STATUS=$?
if [ $STATUS -eq 0 ]; then
echo -e "\e[92mMaven Package: OK\e[39m"
else
echo -e "\e[31mPacking the $1 via Maven failed. Exiting...\e[39m"
exit 1
fi
mvn install -Dmaven.repo.local=mvn-repo -q
mv mvn-repo ../
cd ../
rm -rf stage
fi
}
function buildProject()
{
mvn clean -q
mkdir mvn-repo
rm -rf stage
# Do we need to build the API?
compileMvnProject "api" $api
# Do we need to build Peerfact?
compileMvnProject "peerfact" $peerfact
# Build Overlays
compileMvnProject "overlays" $overlays
# And finally - build the runner!
mvn package -Dmaven.repo.local=mvn-repo -q
STATUS=$?
if [ $STATUS -eq 0 ]; then
echo -e "\e[92mMaven Package: OK\e[39m"
else
echo -e "\e[31mPacking the SimRunner via Maven failed. Exiting...\e[39m"
exit 1
fi
mv target/multirunner.jar ./
echo " -- "
echo -e "\e[92m Build completed. \e[39mThe resulting jar (with dependencies): multirunner.jar"
echo -e " To use your build of peerfact, execute \e[92mjava -jar multirunner.jar\e[39m and pass your configuration."
echo " -- "
}
function usage()
{
cat << EOF
Usage: $0 [options] <overlays>
Options:
-h You're looking at it.
-p <branch> Use the provided branch for the compilation of peerfactsim.
If no branch is specified, maven resolves the dependency.
-a <branch> Use the provided branch for the compilation of the API.
If no branch is specified, maven resolves the dependency.
Parameters:
<overlays> Branch of the overlay-project to be used during compilation.
EOF
}
# defaults:
peerfact=use-maven
api=use-maven
while getopts “hp:a:” OPTION; do
case $OPTION in
h)
usage
exit 0
;;
p)
peerfact=$OPTARG
;;
a)
api=$OPTARG
;;
?)
usage
exit 1
;;
*)
echo 'WHAT HAPPEN?'
exit 2
;;
esac
done
shift $(($OPTIND-1))
overlays=$*
if [[ -z $overlays ]]; then
echo "ERROR: No branch for simonstrator-overlays given!"
echo
usage
exit 3
fi
buildProject
exit 0