blob: 8940ac00e1ef88e83c837db3b76efd7698f27566 (
plain)
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
|
#!/bin/bash
# (c) 2016 Jan-Simon Moeller dl9pf(at)gmx.de
# License GPLv2
#
# debugging purposes
set -e
################################################################################
# build the app
################################################################################
# fallback
if test -z "${GERRIT_PROJECT}"; then
export GERRIT_PROJECT="apps/controls"
fi
if test -z "${GERRIT_BRANCH}"; then
export GERRIT_BRANCH="master"
fi
if test -z "${GERRIT_REFSPEC}"; then
export GERRIT_REFSPEC="refs/tags/dab_3.99.1"
fi
if test -z "${GERRIT_HOST}"; then
export GERRIT_HOST="gerrit.automotivelinux.org"
fi
# apply GERRIT_*
if test -n "${GERRIT_PROJECT}"; then
export TARGETPROJECT="${GERRIT_PROJECT}"
fi
if test -n "${GERRIT_BRANCH}"; then
export TARGETBRANCH="${GERRIT_BRANCH}"
fi
if test -n "${GERRIT_REFSPEC}"; then
export TARGETREFSPEC="${GERRIT_REFSPEC}"
fi
HANDLED="no"
# Projects in apps/*
###################
if [[ ! x"yes" = x"$HANDLED" ]] && $(echo "$TARGETPROJECT" | grep -q "apps/"); then
MYPROJECT=`echo $TARGETPROJECT | sed -e "s#apps/##g"`
# clone git
rm -rf ${MYPROJECT}
git clone https://${GERRIT_HOST}/gerrit/${GERRIT_PROJECT}.git
pushd ${MYPROJECT}
git log -1
git fetch ${TARGET_REFSPEC}
git reset --hard FETCH_HEAD
git log -1
if test -f Makefile ; then
make
make package
fi
if test -f ${MYPROJECT}.pro; then
qmake
make
make package
fi
popd
HANDLED="yes"
fi
|