~osomon/webbrowser-app/zoom-qwerty-keyboard

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bileto Bot
  • Author(s): Olivier Tilloy
  • Date: 2016-08-25 09:52:00 UTC
  • mfrom: (1513.3.1 trunk)
  • Revision ID: ci-train-bot@canonical.com-20160825095200-4kxs74ogz46zo35x
Revert the workaround for bug #1585942 now that the bug has been properly fixed. (LP: #1585942)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
export DPKG_GENSYMBOLS_CHECK_LEVEL=4
8
8
 
9
 
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
10
 
# Temporarily skip tests on arm64 to unblock package build without oxide.
11
 
testskip_architectures := arm64
12
 
 
13
9
BUILDHOME=/tmp/home
14
10
 
15
11
%:
45
41
        rm -rf $(BUILDHOME)
46
42
 
47
43
override_dh_auto_test:
48
 
ifneq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(testskip_architectures)))
49
44
        mkdir -p $(BUILDHOME)
50
45
        HOME=$(BUILDHOME) dh_auto_test
51
 
else
52
 
        echo "Temporarily skipping tests on $(DEB_HOST_ARCH)."
53
 
endif
54
46