Skip to content
Commits on Source (3)
......@@ -6,22 +6,10 @@
# read pbuilderrc.5 document for notes on specific options.
#
# cater for different locations
case $HOSTNAME in
jenkins|jenkins-test-vm|profitbricks-build*|osuosl*)
MIRRORSITE=http://deb.debian.org/debian ;;
bbx15|cb3*|cbxi4*|wbq0|odxu4*|odu3*|odc*|ff*|ff4*|opi2*|jt?1*|p64*)
MIRRORSITE=http://deb.debian.org/debian ;;
codethink*)
MIRRORSITE=http://deb.debian.org/debian ;;
*)
echo "unsupported host, exiting." ; exit 1 ;;
esac
MIRRORSITE="http://deb.debian.org/debian"
# only use eatmydata on armhf+i386 - on amd64+arm64 we build in tmpfs anyway
case $HOSTNAME in
profitbricks-build*i386)
EATMYDATA=yes ;;
bbx15|cb3*|cbxi4*|wbq0|odxu4*|odu3*|odc*|ff*|ff4*|opi2*|jt?1*|p64*)
*i386*|*armhf*)
EATMYDATA=yes ;;
*) ;;
esac
......@@ -30,6 +18,9 @@ APTCACHE=""
COMPRESSPROG="pigz"
BUILDPLACE=/srv/workspace/pbuilder # build in /srv/workspace, which is in tmpfs
# dependency resolver to use - the default aptitude one has many dependencies
PBUILDERSATISFYDEPENDSCMD="/usr/lib/pbuilder/pbuilder-satisfydepends-apt"
# set PATH to predictable values, see #780729 and #780725
PATH="/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"
......