mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-09 21:17:09 +08:00
vendor: update buildkit
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
8
vendor/github.com/moby/buildkit/solver/pb/ops.proto
generated
vendored
8
vendor/github.com/moby/buildkit/solver/pb/ops.proto
generated
vendored
@ -58,7 +58,6 @@ message Meta {
|
||||
ProxyEnv proxy_env = 5;
|
||||
repeated HostIP extraHosts = 6;
|
||||
string hostname = 7;
|
||||
int64 shmSize = 8;
|
||||
repeated Ulimit ulimit = 9;
|
||||
}
|
||||
|
||||
@ -92,6 +91,7 @@ message Mount {
|
||||
int64 output = 4 [(gogoproto.customtype) = "OutputIndex", (gogoproto.nullable) = false];
|
||||
bool readonly = 5;
|
||||
MountType mountType = 6;
|
||||
TmpfsOpt TmpfsOpt = 19;
|
||||
CacheOpt cacheOpt = 20;
|
||||
SecretOpt secretOpt = 21;
|
||||
SSHOpt SSHOpt = 22;
|
||||
@ -107,6 +107,12 @@ enum MountType {
|
||||
TMPFS = 4;
|
||||
}
|
||||
|
||||
// TmpfsOpt defines options describing tpmfs mounts
|
||||
message TmpfsOpt {
|
||||
// Specify an upper limit on the size of the filesystem.
|
||||
int64 size = 1;
|
||||
}
|
||||
|
||||
// CacheOpt defines options specific to cache mounts
|
||||
message CacheOpt {
|
||||
// ID is an optional namespace for the mount
|
||||
|
Reference in New Issue
Block a user