Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
python-bytecode
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
Debian Python Team
packages
python-bytecode
Commits
adac98b5
Commit
adac98b5
authored
1 year ago
by
Julian Gilbey
Browse files
Options
Downloads
Patches
Plain Diff
Ensure autopkgtest passes on armhf too
parent
b3b1d8f4
Loading
Loading
No related merge requests found
Pipeline
#616554
failed
1 year ago
Stage: provisioning
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+1
-1
1 addition, 1 deletion
debian/changelog
debian/rules
+18
-1
18 additions, 1 deletion
debian/rules
with
19 additions
and
2 deletions
debian/changelog
+
1
−
1
View file @
adac98b5
...
...
@@ -4,7 +4,7 @@ python-bytecode (0.15.1-2) unstable; urgency=medium
* Patch failing test on armhf - addresses #1056460 but does not fix it,
as the cause is still unknown
-- Julian Gilbey <jdg@debian.org> Thu, 21 Dec 2023 1
2:45
:0
4
+0000
-- Julian Gilbey <jdg@debian.org> Thu, 21 Dec 2023 1
3:10
:0
2
+0000
python-bytecode (0.15.1-1) unstable; urgency=medium
...
...
This diff is collapsed.
Click to expand it.
debian/rules
+
18
−
1
View file @
adac98b5
...
...
@@ -24,13 +24,30 @@ override_dh_installdocs:
dh_installdocs --remaining-packages
endif
# armhf fails strangely; see https://bugs.debian.org/1056460
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
ifeq ($(DEB_BUILD_ARCH),armhf)
execute_before_dh_auto_test:
patch -p1 < debian/armhf.patch
execute_after_dh_auto_test:
patch -p1 -R < debian/armhf.patch
patch -p1 -R < debian/armhf.patch
endif
endif
# Need to hide the conditionals inside the targets, otherwise
# pybuild-autopkgtest is likely to break on non-armhf architectures
before-pybuild-autopkgtest:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
ifeq ($(DEB_BUILD_ARCH),armhf)
patch -p1 < debian/armhf.patch
endif
endif
after-pybuild-autopkgtest:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
ifeq ($(DEB_BUILD_ARCH),armhf)
patch -p1 -R < debian/armhf.patch
endif
endif
...
...
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