#!/bin/sh
set -e

case "$(dpkg-architecture -qDEB_HOST_ARCH)" in
    i386)
        # The i386 debci runners are not powerful enough to run all the
        # testsuite within the default timeout. Disable the biarch ones.
        export DEB_BUILD_PROFILES="nobiarch"
        ;;
    *)
        ;;
esac

debian/rules build-arch-post-check
