Verified Commit 3592460e authored by Michael R. Crusoe's avatar Michael R. Crusoe 🏳️‍🌈
Browse files

Only run tests on certain archs.

parent d1546206
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
lambda-align (1.0.3-3) unstable; urgency=medium

  * Only run tests on certain archs. (Closes: #890851)

 -- Michael R. Crusoe <michael.crusoe@gmail.com>  Wed, 21 Feb 2018 01:59:38 -0800

lambda-align (1.0.3-2) unstable; urgency=medium

  * Fix AutoPkgTests, tested locally with debci
+4 −1
Original line number Diff line number Diff line
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
include /usr/share/dpkg/pkg-info.mk

%:
	dh $@ --builddirectory=build
@@ -27,4 +28,6 @@ override_dh_auto_configure:
	dh_auto_configure -- -DLAMBDA_NATIVE_BUILD=OFF -DLAMBDA_MMAPPED_DB=ON -DCMAKE_BUILD_TYPE=Release

override_dh_auto_test:
	ifneq (,$(filter amd64 arm64 mips64el ppc64el,$(DEB_BUILD_ARCH)))
		cd build/tests && ctest --parallel $(shell nproc)
	endif