Skip to content
Snippets Groups Projects
Commit 50bde0b5 authored by Markus Frosch's avatar Markus Frosch
Browse files

deb: Use pbuilder-satisfydepends-experimental on arm

parent 6fe93674
No related branches found
No related tags found
No related merge requests found
Pipeline #3165 passed
...@@ -46,7 +46,11 @@ echo "[ Installing build dependencies ]" ...@@ -46,7 +46,11 @@ echo "[ Installing build dependencies ]"
( (
set -ex set -ex
cd "${BUILDDIR}/${ICINGA_BUILD_PROJECT}" cd "${BUILDDIR}/${ICINGA_BUILD_PROJECT}"
if command -v aptitude >/dev/null && [ -x /usr/lib/pbuilder/pbuilder-satisfydepends-aptitude ]; then if [[ "$(uname -m)" = arm* ]]; then
# avoid aptitude, since it crashed with qemu-arm-static for some reason...
# qemu:handle_cpu_signal received signal outside vCPU context
sudo DEBIAN_FRONTEND=noninteractive $eatmydata /usr/lib/pbuilder/pbuilder-satisfydepends-experimental
elif command -v aptitude >/dev/null && [ -x /usr/lib/pbuilder/pbuilder-satisfydepends-aptitude ]; then
sudo DEBIAN_FRONTEND=noninteractive $eatmydata /usr/lib/pbuilder/pbuilder-satisfydepends-aptitude sudo DEBIAN_FRONTEND=noninteractive $eatmydata /usr/lib/pbuilder/pbuilder-satisfydepends-aptitude
else else
sudo DEBIAN_FRONTEND=noninteractive $eatmydata /usr/lib/pbuilder/pbuilder-satisfydepends sudo DEBIAN_FRONTEND=noninteractive $eatmydata /usr/lib/pbuilder/pbuilder-satisfydepends
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment