mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
vendor: update buildkit to master@ae9d0f5
Signed-off-by: Justin Chadwell <me@jedevc.com>
This commit is contained in:
30
vendor/github.com/moby/buildkit/solver/pb/caps.go
generated
vendored
30
vendor/github.com/moby/buildkit/solver/pb/caps.go
generated
vendored
@ -73,13 +73,18 @@ const (
|
||||
CapMetaDescription apicaps.CapID = "meta.description"
|
||||
CapMetaExportCache apicaps.CapID = "meta.exportcache"
|
||||
|
||||
CapRemoteCacheGHA apicaps.CapID = "cache.gha"
|
||||
CapRemoteCacheS3 apicaps.CapID = "cache.s3"
|
||||
CapRemoteCacheGHA apicaps.CapID = "cache.gha"
|
||||
CapRemoteCacheS3 apicaps.CapID = "cache.s3"
|
||||
CapRemoteCacheAzBlob apicaps.CapID = "cache.azblob"
|
||||
|
||||
CapMergeOp apicaps.CapID = "mergeop"
|
||||
CapDiffOp apicaps.CapID = "diffop"
|
||||
|
||||
CapAnnotations apicaps.CapID = "exporter.image.annotations"
|
||||
CapAnnotations apicaps.CapID = "exporter.image.annotations"
|
||||
CapAttestations apicaps.CapID = "exporter.image.attestations"
|
||||
|
||||
// CapSourceDateEpoch is the capability to automatically handle the date epoch
|
||||
CapSourceDateEpoch apicaps.CapID = "exporter.sourcedateepoch"
|
||||
)
|
||||
|
||||
func init() {
|
||||
@ -423,6 +428,12 @@ func init() {
|
||||
Status: apicaps.CapStatusExperimental,
|
||||
})
|
||||
|
||||
Caps.Init(apicaps.Cap{
|
||||
ID: CapRemoteCacheAzBlob,
|
||||
Enabled: true,
|
||||
Status: apicaps.CapStatusExperimental,
|
||||
})
|
||||
|
||||
Caps.Init(apicaps.Cap{
|
||||
ID: CapMergeOp,
|
||||
Enabled: true,
|
||||
@ -440,4 +451,17 @@ func init() {
|
||||
Enabled: true,
|
||||
Status: apicaps.CapStatusExperimental,
|
||||
})
|
||||
|
||||
Caps.Init(apicaps.Cap{
|
||||
ID: CapAttestations,
|
||||
Enabled: true,
|
||||
Status: apicaps.CapStatusExperimental,
|
||||
})
|
||||
|
||||
Caps.Init(apicaps.Cap{
|
||||
ID: CapSourceDateEpoch,
|
||||
Name: "source date epoch",
|
||||
Enabled: true,
|
||||
Status: apicaps.CapStatusExperimental,
|
||||
})
|
||||
}
|
||||
|
3
vendor/github.com/moby/buildkit/solver/pb/ops.pb.go
generated
vendored
3
vendor/github.com/moby/buildkit/solver/pb/ops.pb.go
generated
vendored
@ -154,6 +154,7 @@ type Op struct {
|
||||
// inputs is a set of input edges.
|
||||
Inputs []*Input `protobuf:"bytes,1,rep,name=inputs,proto3" json:"inputs,omitempty"`
|
||||
// Types that are valid to be assigned to Op:
|
||||
//
|
||||
// *Op_Exec
|
||||
// *Op_Source
|
||||
// *Op_File
|
||||
@ -1948,6 +1949,7 @@ type FileAction struct {
|
||||
SecondaryInput InputIndex `protobuf:"varint,2,opt,name=secondaryInput,proto3,customtype=InputIndex" json:"secondaryInput"`
|
||||
Output OutputIndex `protobuf:"varint,3,opt,name=output,proto3,customtype=OutputIndex" json:"output"`
|
||||
// Types that are valid to be assigned to Action:
|
||||
//
|
||||
// *FileAction_Copy
|
||||
// *FileAction_Mkfile
|
||||
// *FileAction_Mkdir
|
||||
@ -2465,6 +2467,7 @@ func (m *ChownOpt) GetGroup() *UserOpt {
|
||||
|
||||
type UserOpt struct {
|
||||
// Types that are valid to be assigned to User:
|
||||
//
|
||||
// *UserOpt_ByName
|
||||
// *UserOpt_ByID
|
||||
User isUserOpt_User `protobuf_oneof:"user"`
|
||||
|
Reference in New Issue
Block a user