diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-09-24 13:31:29 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-09-24 13:31:29 +0200 |
commit | ef3ee38aae9896ee1e2bdd74fd828b3b01d4265b (patch) | |
tree | b19a1572ad4d9a09e1de124dffc408851047bf0a | |
parent | b9e6426c9dbd004616ea70e6b453001639f2024f (diff) | |
download | jenkins.debian.net-ef3ee38aae9896ee1e2bdd74fd828b3b01d4265b.tar.xz |
reproducible fdroid: add some depends needed (which changed packages in stretch)
-rwxr-xr-x | update_jdn.sh | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index 4af019c3..5adb6d46 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -265,9 +265,9 @@ if [ -f /etc/debian_version ] ; then profitbricks-build4-amd64|profitbricks-build5-amd64|profitbricks-build6-i386) DEBS="$DEBS ntpdate" ;; *) ;; esac - # needed to run coreboot/openwrt/lede/netbsd/fedora/fdroid jobs + # needed to run coreboot/openwrt/lede/netbsd/fedora jobs case $HOSTNAME in - profitbricks-build3-amd64|profitbricks-build4-amd64|profitbricks-build7-amd64) DEBS="$DEBS + profitbricks-build3-amd64|profitbricks-build4-amd64) DEBS="$DEBS bison ca-certificates cmake @@ -296,13 +296,21 @@ if [ -f /etc/debian_version ] ; then tree unzip util-linux - vagrant - virtualbox zlib1g-dev" ;; + # needed to run fdroid jobs + case $HOSTNAME in + profitbricks-build7-amd64) DEBS="$DEBS + libvirt-daemon + libvirt-daemon-system + python3-vagrant + vagrant + vagrant-mutate + vagrant-libvirt" + ;; *) ;; esac - # cucumber dependencies + # cucumber dependencies (for lvc jobs) case $HOSTNAME in profitbricks-build10-amd64|jenkins-test-vm) DEBS="$DEBS cucumber @@ -432,9 +440,8 @@ if [ -f /etc/debian_version ] ; then pbuilder lintian || echo "this should only fail on the first install" # botch # we need mock from bpo to build current fedora - # we need vagrant from bpo to build fdroid - if [ "$HOSTNAME" = "profitbricks-build3-amd64" ] || [ "$HOSTNAME" = "profitbricks-build4-amd64" ] || [ "$HOSTNAME" = "profitbricks-build7-amd64" ] || [ "$HOSTNAME" = "jenkins" ] ; then - $UP2DATE || sudo apt-get install -t jessie-backports mock python3-vagrant \ + if [ "$HOSTNAME" = "profitbricks-build3-amd64" ] || [ "$HOSTNAME" = "profitbricks-build4-amd64" ] || [ "$HOSTNAME" = "jenkins" ] ; then + $UP2DATE || sudo apt-get install -t jessie-backports mock \ || echo "this should only fail on the first install" fi # for varying kernels |