Skip to content
Snippets Groups Projects
Commit b2cfd309 authored by Philip Hands's avatar Philip Hands Committed by Holger Levsen
Browse files

presets.py: include all files matching *.*deb in default artifact_pattern


Signed-off-by: default avatarHolger Levsen <holger@layer-acht.org>
parent bfa0eca4
No related branches found
No related tags found
No related merge requests found
Pipeline #419453 failed with stages
in 7 minutes and 25 seconds
......@@ -64,7 +64,7 @@ class ReprotestPreset(collections.namedtuple('_ReprotestPreset',
PRESET_DEB_DIR = ReprotestPreset(
build_command='dpkg-buildpackage --no-sign -b',
artifact_pattern='../*.deb',
artifact_pattern='../*.*deb',
testbed_pre=None,
testbed_init=None,
testbed_build_pre=None,
......@@ -98,7 +98,7 @@ def preset_deb_dsc(fn, aux):
# we use "$(basename "$PWD")" so that the dirname varies iff we are varying the whole build path
return PRESET_DEB_DIR.prepend.build_command(
'dpkg-source -x "%s" "$(basename "$PWD")" && cd "$(basename "$PWD")" && ' % fn
).set.artifact_pattern("*.deb"
).set.artifact_pattern("*.*deb"
).set.source_pattern(" ".join(shlex.quote(a) for a in [fn] + aux))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment