manifest: build packages - move over 'rpm-ostree'

Move `iotBuildPackages()` from the distro to the pipelines.
This commit is contained in:
Tom Gundersen 2022-06-30 12:42:23 +01:00
parent e51e4e458f
commit 70d7a25a8e
5 changed files with 26 additions and 8 deletions

View file

@ -33,6 +33,13 @@ func NewOSTreeCommitPipeline(m *Manifest,
return p
}
func (p *OSTreeCommitPipeline) getBuildPackages() []string {
packages := []string{
"rpm-ostree",
}
return packages
}
func (p *OSTreeCommitPipeline) serialize() osbuild2.Pipeline {
pipeline := p.BasePipeline.serialize()