forked from tpruvot/hudson
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build-app.sh
executable file
·116 lines (92 loc) · 2.23 KB
/
build-app.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
#!/usr/bin/env bash
function check_result {
if [ "0" -ne "$?" ]
then
echo $1 step failed !
exit 1
fi
}
if [ -z "$HOME" ]
then
echo HOME not in environment, guessing...
export HOME=$(awk -F: -v v="$USER" '{if ($1==v) print $6}' /etc/passwd)
fi
if [ -z "$WORKSPACE" ]
then
echo WORKSPACE not specified
exit 1
fi
if [ -z "$CLEAN_TYPE" ]
then
echo CLEAN_TYPE not specified
exit 1
fi
if [ -z "$REPO_BRANCH" ]
then
echo REPO_BRANCH not specified
exit 1
fi
if [ -z "$LUNCH" ]
then
echo LUNCH not specified
exit 1
fi
# colorization fix in Jenkins
export CL_PFX="\"\033[34m\""
export CL_INS="\"\033[32m\""
export CL_RST="\"\033[0m\""
rm -rf $WORKSPACE/archive-app
mkdir -p $WORKSPACE/archive-app
export BUILD_NO=$BUILD_NUMBER
unset BUILD_NUMBER
export PATH=/mnt/bin:~/bin:$PATH
export USE_CCACHE=1
export CCACHE_NLEVELS=4
export BUILD_WITH_COLORS=0
# make sure ccache is in PATH
export PATH="$PATH:/opt/local/bin/:$PWD/prebuilt/$(uname|awk '{print tolower($0)}')-x86/ccache"
if [ -f ~/.jenkins_profile ]
then
. ~/.jenkins_profile
fi
HUDSON_DIR=$WORKSPACE/hudson
echo "About to do $HUDSON_DIR/$REPO_BRANCH-setup.sh"
cd $WORKSPACE/$REPO_BRANCH
if [ -f $HUDSON_DIR/$REPO_BRANCH-setup.sh ]
then
echo "Doing $HUDSON_DIR/$REPO_BRANCH-setup.sh"
$HUDSON_DIR/$REPO_BRANCH-setup.sh $WORKSPACE $REPO_BRANCH
fi
cd $WORKSPACE/$REPO_BRANCH
echo "We are ready to build in $WORKSPACE/$REPO_BRANCH"
. build/envsetup.sh
lunch $LUNCH
check_result lunch failed.
UNAME=$(uname)
if [ ! -z "$GERRIT_CHANGES" ]
then
export CM_SNAPSHOT=true
IS_HTTP=$(echo $GERRIT_CHANGES | grep http)
if [ -z "$IS_HTTP" ]
then
python $WORKSPACE/hudson/repopick.py $GERRIT_CHANGES
check_result "gerrit picks failed."
else
python $WORKSPACE/hudson/repopick.py $(curl $GERRIT_CHANGES)
check_result "gerrit picks failed."
fi
fi
if [ ! "$(ccache -s|grep -E 'max cache size'|awk '{print $4}')" = "20.0" ]
then
ccache -M 20G
fi
make $CLEAN_TYPE
make -j$CORES RomUpdater
check_result Build failed.
echo "Files in $OUT"
echo "############################################"
ls -l $OUT
echo "############################################"
# Files to keep
cp $OUT/system/app/RomUpdater.apk $WORKSPACE/archive-app
chmod -R ugo+r $WORKSPACE/archive-app