mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-10 13:37:08 +08:00
vendor: update buildkit to v0.19.0-rc1
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
2
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/annotations.go
generated
vendored
2
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/annotations.go
generated
vendored
@ -49,7 +49,7 @@ func (k AnnotationKey) PlatformString() string {
|
||||
if k.Platform == nil {
|
||||
return ""
|
||||
}
|
||||
return platforms.Format(*k.Platform)
|
||||
return platforms.FormatAll(*k.Platform)
|
||||
}
|
||||
|
||||
func AnnotationIndexKey(key string) string {
|
||||
|
3
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/keys.go
generated
vendored
3
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/keys.go
generated
vendored
@ -44,6 +44,9 @@ var (
|
||||
// Value: bool <true|false>
|
||||
OptKeyOCITypes ImageExporterOptKey = "oci-mediatypes"
|
||||
|
||||
// Use OCI artifact format for the attestation manifest.
|
||||
OptKeyOCIArtifact ImageExporterOptKey = "oci-artifact"
|
||||
|
||||
// Force attestation to be attached.
|
||||
// Value: bool <true|false>
|
||||
OptKeyForceInlineAttestations ImageExporterOptKey = "attestation-inline"
|
||||
|
2
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/parse.go
generated
vendored
2
vendor/github.com/moby/buildkit/exporter/containerimage/exptypes/parse.go
generated
vendored
@ -53,7 +53,7 @@ func ParsePlatforms(meta map[string][]byte) (Platforms, error) {
|
||||
}
|
||||
}
|
||||
p = platforms.Normalize(p)
|
||||
pk := platforms.Format(p)
|
||||
pk := platforms.FormatAll(p)
|
||||
ps := Platforms{
|
||||
Platforms: []Platform{{ID: pk, Platform: p}},
|
||||
}
|
||||
|
Reference in New Issue
Block a user