Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libvirt
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Libvirt Packaging Team
libvirt
Commits
22913a09
Commit
22913a09
authored
11 years ago
by
Guido Günther
Browse files
Options
Downloads
Patches
Plain Diff
Skip tests on all architectures except for i386 and amd64
as we did with cdbs
parent
ff9f1720
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
debian/rules
+4
-3
4 additions, 3 deletions
debian/rules
with
4 additions
and
3 deletions
debian/rules
+
4
−
3
View file @
22913a09
...
...
@@ -4,9 +4,9 @@ export VIR_TEST_DEBUG=1
ifneq (,$(findstring $(DEB_HOST_ARCH_OS), linux))
ifneq (,$(findstring $(DEB_HOST_ARCH), i386 amd64))
DEB_MAKE_CHECK_TARGET = check
WITH_XEN = --with-xen
WITH_VBOX = --with-vbox
MAKE_CHECK = 1
else
WITH_XEN = --without-xen
WITH_VBOX = --without-vbox
...
...
@@ -110,8 +110,9 @@ override_dh_auto_install:
DEB_BUILDDIR=$(DEB_BUILDDIR) make -f debian/python.mk install
override_dh_auto_test:
export LD_PRELOAD=""; \
dh_auto_test -O--builddirectory=$(DEB_BUILDDIR)
export LD_PRELOAD=""; \
[ -z "$(MAKE_CHECK)" ] || \
dh_auto_test -O--builddirectory=$(DEB_BUILDDIR)
override_dh_install:
dh_install
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment