Codebase list rust-libslirp / d2a04b1
Don't run futures testsuite on mips64el to avoid build hangs. Peter Michael Green 4 years ago
3 changed file(s) with 27 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 rust-futures (0.1.29-3) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package futures 0.1.29 from crates.io using debcargo 2.4.2
4 * Don't run the testsuite on mips64el, it seems to cause a build
5 hang.
6
7 -- Peter Michael Green <plugwash@debian.org> Mon, 13 Apr 2020 12:37:02 +0000
8
09 rust-futures (0.1.29-2) unstable; urgency=medium
110
211 * Team upload.
0 #!/usr/bin/make -f
1 %:
2 dh $@ --buildsystem cargo
3
4 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
5
6 override_dh_auto_test:
7 ifeq ($(DEB_HOST_ARCH),mips64el)
8 echo tests are disabled on mips64el due to build hang.
9 else
10 dh_auto_test -- test --all || true
11 endif
0 #!/usr/bin/make -f
1 %:
2 dh $@ --buildsystem cargo
3
4 override_dh_auto_test:
5 dh_auto_test -- test --all || true