~ci-train-bot/unity-api/unity-api-ubuntu-zesty-2151

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bileto Bot
  • Author(s): Michał Sawicz
  • Date: 2016-07-30 21:18:09 UTC
  • mfrom: (240.1.1 no-test-powerpc)
  • Revision ID: ci-train-bot@canonical.com-20160730211809-5ex15j7xtl7kzgq4
Don't run tests on powerpc (LP: #1606927)

We're on gcc 4.9 now, precompiled headers should work

Approved by: Unity8 CI Bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
        dh $@ --parallel --fail-missing
16
16
 
17
17
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
18
 
ifeq ($(DEB_HOST_ARCH),arm64)
19
 
# Precompiled headers are broken on arm64 with g++-4.8.  Recheck this once
20
 
# g++-4.9 is the default.
21
 
override_dh_auto_configure:
22
 
        dh_auto_configure -- -Duse_pch=FALSE
 
18
 
 
19
ifeq ($(DEB_HOST_ARCH),powerpc)
 
20
# Qt 5.6.1 crashes on powerpc (LP: #1606927)
 
21
override_dh_auto_test:
23
22
endif