Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reprotest
Manage
Activity
Members
Labels
Plan
Issues
9
Issue boards
Milestones
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Reproducible Builds
reprotest
Commits
b2cfd309
Commit
b2cfd309
authored
2 years ago
by
Philip Hands
Committed by
Holger Levsen
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
presets.py: include all files matching *.*deb in default artifact_pattern
Signed-off-by:
Holger 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
Stage:
Stage:
Stage:
Stage:
in 7 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
reprotest/presets.py
+2
-2
2 additions, 2 deletions
reprotest/presets.py
with
2 additions
and
2 deletions
reprotest/presets.py
+
2
−
2
View file @
b2cfd309
...
...
@@ -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
))
...
...
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