aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps/rbpi/prepare-depends
blob: 8205432d65d5dab60b6644a3940b03d97b0a5c81 (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
WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
XBMC_PLATFORM_DIR=rbpi
. $WORKSPACE/tools/buildsteps/defaultenv

#clean without depends for skipping depends build if possible
#also skip binary addons (pvr, audioencoder) as long as they are deployed in tree
cd $WORKSPACE;git clean -xfd -e "project/cmake/.last_success_revision" -e "tools/depends" ${DEPLOYED_BINARY_ADDONS}

if [ -d $JENKINS_RBPI_DEVENV/firmware ]
then
  cd $JENKINS_RBPI_DEVENV/firmware;git pull origin master
else
  cd $JENKINS_RBPI_DEVENV;git clone git://github.com/raspberrypi/firmware.git --depth=1 -b master
fi

cd $WORKSPACE

# if depends path has changed - cleanout everything and do a full rebuild
if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ]
then
  #clean up the rest too
  cd $WORKSPACE;git clean -xffd
  cd $WORKSPACE/tools/depends/;./bootstrap
fi