Merge lp:~bzoltan/ubuntu-ui-toolkit/ifeq_is_better_than_ifneq into lp:ubuntu-ui-toolkit/staging

Proposed by Zoltan Balogh
Status: Merged
Approved by: Zsombor Egri
Approved revision: 1994
Merged at revision: 1991
Proposed branch: lp:~bzoltan/ubuntu-ui-toolkit/ifeq_is_better_than_ifneq
Merge into: lp:ubuntu-ui-toolkit/staging
Diff against target: 37 lines (+5/-0)
3 files modified
debian/control (+1/-0)
debian/control.gles (+1/-0)
debian/rules (+3/-0)
To merge this branch: bzr merge lp:~bzoltan/ubuntu-ui-toolkit/ifeq_is_better_than_ifneq
Reviewer Review Type Date Requested Status
ubuntu-sdk-build-bot continuous-integration Approve
Zsombor Egri Approve
Review via email: mp+296391@code.launchpad.net

Commit message

Skip unit tests only on Yakketi

Description of the change

Skip unit tests only on Yakketi

To post a comment you must log in.
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Zoltan Balogh (bzoltan) wrote :

The build environment does not have lsb_release ->

make: lsb_release: Command not found

Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Zsombor Egri (zsombi) wrote :

I still cannot see unit tests ran on arm64 builds.

review: Needs Fixing
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Zsombor Egri (zsombi) wrote :

seems they run now

review: Approve
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
ubuntu-sdk-build-bot (ubuntu-sdk-build-bot) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/control'
--- debian/control 2016-05-27 06:36:11 +0000
+++ debian/control 2016-06-03 06:23:24 +0000
@@ -28,6 +28,7 @@
28 libxkbcommon-dev,28 libxkbcommon-dev,
29 libxrender-dev,29 libxrender-dev,
30 locales,30 locales,
31 lsb-release,
31 pep8,32 pep8,
32 python3-debian,33 python3-debian,
33 python3-sphinx,34 python3-sphinx,
3435
=== modified file 'debian/control.gles'
--- debian/control.gles 2016-05-02 09:45:47 +0000
+++ debian/control.gles 2016-06-03 06:23:24 +0000
@@ -32,6 +32,7 @@
32 libxkbcommon-dev,32 libxkbcommon-dev,
33 libxrender-dev,33 libxrender-dev,
34 locales,34 locales,
35 lsb-release,
35 pep8,36 pep8,
36 python-autopilot (>= 1.4),37 python-autopilot (>= 1.4),
37 python3-sphinx,38 python3-sphinx,
3839
=== modified file 'debian/rules'
--- debian/rules 2016-05-22 19:28:39 +0000
+++ debian/rules 2016-06-03 06:23:24 +0000
@@ -22,6 +22,9 @@
22 dh $@ --parallel22 dh $@ --parallel
2323
24override_dh_auto_test:24override_dh_auto_test:
25 echo TRACE_TEST
26 echo $(DEB_HOST_SERIES)
27 echo $(testskip_series)
25ifneq ($(DEB_HOST_SERIES),$(findstring $(DEB_HOST_SERIES), $(testskip_series)))28ifneq ($(DEB_HOST_SERIES),$(findstring $(DEB_HOST_SERIES), $(testskip_series)))
26ifneq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(testskip_architectures)))29ifneq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(testskip_architectures)))
27ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))30ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))

Subscribers

People subscribed via source and target branches