* debian/tests/acceptance: Add ETCD_UNSUPPORTED_ARCH=386 to invocation for

i386.
This commit is contained in:
Michael Banck 2018-10-05 12:06:10 +02:00
parent 081cec3569
commit 94f9410868
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -3,6 +3,8 @@ patroni (1.5.0-7) UNRELEASED; urgency=medium
[ Michael Banck ]
* debian/control (Depends): Add explicit Depends on the DCS client modules
(python3-etcd, python3-consul, python3-kazoo and python3-kubernetes).
* debian/tests/acceptance: Add ETCD_UNSUPPORTED_ARCH=386 to invocation for
i386.
-- Debian PostgreSQL Maintainers <team+postgresql@tracker.debian.org> Mon, 01 Oct 2018 16:55:35 +0200

View file

@ -28,6 +28,6 @@ trap 'rm -f /tmp/pgpass?; if [ $(id -u) -eq 0 ] && [ -x /etc/init.d/zookeeper ];
set -x
for PG_VERSION in /usr/lib/postgresql/*; do
$SU "DCS=$DCS PATH=/usr/lib/postgresql/$(basename ${PG_VERSION})/bin:$PATH behave" || \
$SU "ETCD_UNSUPPORTED_ARCH=386 DCS=$DCS PATH=/usr/lib/postgresql/$(basename ${PG_VERSION})/bin:$PATH behave" || \
(for file in $(ls features/output/*_failed/*); do echo "$file:"; cat $file; done && exit 1)
done