pipeline: remove options from build result

Remove the stage options from the `BuildResult` object. They were
only serialized in the case of version 1 and not actually used by
Composer for anything. Use of v1 manifests should very limted now
anyway.
This commit is contained in:
Christian Kellner 2022-06-13 17:57:27 +00:00 committed by Tom Gundersen
parent a96ee0f8ba
commit d235e4c26a

View file

@ -49,7 +49,6 @@ class BuildResult:
def __init__(self, origin, returncode, output, metadata, error):
self.name = origin.name
self.id = origin.id
self.options = origin.options
self.success = returncode == 0
self.output = output
self.metadata = metadata