In the OS pipeline, the parent configuration was used to detect if the pipeline's setup was meant for an ostree commit or not. Also, the pipeline used a new type to specify the ostree parameters. - Use the ostree.CommitSpec for the parent configuration. - Add a new attribute, OSTreeRef, that defines the ref for the ostree commit being built. An empty string indicates that the tree is not for an ostree commit. Additionally, in the ImageKind configurations for the ostree archive and container, separate the ostree ref from the parent spec, make the parent spec optional (pointer) and the ostree ref mandatory, by requiring it in the constructor of the ImageKind.
66 lines
1.5 KiB
Go
66 lines
1.5 KiB
Go
package manifest
|
|
|
|
import (
|
|
"github.com/osbuild/osbuild-composer/internal/osbuild"
|
|
)
|
|
|
|
// OSTreeCommit represents an ostree with one commit.
|
|
type OSTreeCommit struct {
|
|
Base
|
|
OSVersion string
|
|
|
|
treePipeline *OS
|
|
ref string
|
|
}
|
|
|
|
// NewOSTreeCommit creates a new OSTree commit pipeline. The
|
|
// treePipeline is the tree representing the content of the commit.
|
|
// ref is the ref to create the commit under.
|
|
func NewOSTreeCommit(m *Manifest,
|
|
buildPipeline *Build,
|
|
treePipeline *OS,
|
|
ref string) *OSTreeCommit {
|
|
p := &OSTreeCommit{
|
|
Base: NewBase(m, "ostree-commit", buildPipeline),
|
|
treePipeline: treePipeline,
|
|
ref: ref,
|
|
}
|
|
if treePipeline.Base.manifest != m {
|
|
panic("tree pipeline from different manifest")
|
|
}
|
|
buildPipeline.addDependent(p)
|
|
m.addPipeline(p)
|
|
return p
|
|
}
|
|
|
|
func (p *OSTreeCommit) getBuildPackages() []string {
|
|
packages := []string{
|
|
"rpm-ostree",
|
|
}
|
|
return packages
|
|
}
|
|
|
|
func (p *OSTreeCommit) serialize() osbuild.Pipeline {
|
|
pipeline := p.Base.serialize()
|
|
|
|
if p.treePipeline.OSTreeRef == "" {
|
|
panic("tree is not ostree")
|
|
}
|
|
|
|
pipeline.AddStage(osbuild.NewOSTreeInitStage(&osbuild.OSTreeInitStageOptions{Path: "/repo"}))
|
|
|
|
var parent string
|
|
if p.treePipeline.OSTreeParent != nil {
|
|
parent = p.treePipeline.OSTreeParent.Checksum
|
|
}
|
|
pipeline.AddStage(osbuild.NewOSTreeCommitStage(
|
|
&osbuild.OSTreeCommitStageOptions{
|
|
Ref: p.ref,
|
|
OSVersion: p.OSVersion,
|
|
Parent: parent,
|
|
},
|
|
p.treePipeline.Name()),
|
|
)
|
|
|
|
return pipeline
|
|
}
|