launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #31590
[Merge] ~jugmac00/launchpad-buildd:gather-fetch-service-meta-data into launchpad-buildd:master
Jürgen Gmach has proposed merging ~jugmac00/launchpad-buildd:gather-fetch-service-meta-data into launchpad-buildd:master.
Commit message:
Gather fetch service meta data for rock builds
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~jugmac00/launchpad-buildd/+git/launchpad-buildd/+merge/474069
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~jugmac00/launchpad-buildd:gather-fetch-service-meta-data into launchpad-buildd:master.
diff --git a/lpbuildd/rock.py b/lpbuildd/rock.py
index 292ee42..cc02fa6 100644
--- a/lpbuildd/rock.py
+++ b/lpbuildd/rock.py
@@ -21,7 +21,7 @@ class RockBuildManager(BuildManagerProxyMixin, DebianBuildManager):
@property
def needs_sanitized_logs(self):
return True
-
+
def initiate(self, files, chroot, extra_args):
"""Initiate a build with a given set of files and chroot."""
self.name = extra_args["name"]
@@ -103,5 +103,5 @@ class RockBuildManager(BuildManagerProxyMixin, DebianBuildManager):
path = os.path.join(output_path, entry)
if self.backend.islink(path):
continue
- if entry.endswith(".rock"):
+ if entry.endswith(".rock", ".manifest"):
self.addWaitingFileFromBackend(path)
Follow ups