diffs: - full diff:af34b94a78...6c0a036dce- full diff:4d1f260e84...v0.8.0-rc2 New dependencies: - go.opencensus.io v0.22.3 - github.com/containerd/typeurl v1.0.1 - github.com/golang/groupcache 869f871628b6baa9cfbc11732cdf6546b17c1298 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
44 lines
666 B
Protocol Buffer
44 lines
666 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package errdefs;
|
|
|
|
import "github.com/moby/buildkit/solver/pb/ops.proto";
|
|
|
|
message Vertex {
|
|
string digest = 1;
|
|
}
|
|
|
|
message Source {
|
|
pb.SourceInfo info = 1;
|
|
repeated pb.Range ranges = 2;
|
|
}
|
|
|
|
message FrontendCap {
|
|
string name = 1;
|
|
}
|
|
|
|
message Subrequest {
|
|
string name = 1;
|
|
}
|
|
|
|
message Solve {
|
|
repeated string inputIDs = 1;
|
|
repeated string mountIDs = 2;
|
|
pb.Op op = 3;
|
|
|
|
oneof subject {
|
|
FileAction file = 4;
|
|
ContentCache cache = 5;
|
|
}
|
|
}
|
|
|
|
message FileAction {
|
|
// Index of the file action that failed the exec.
|
|
int64 index = 1;
|
|
}
|
|
|
|
message ContentCache {
|
|
// Original index of result that failed the slow cache calculation.
|
|
int64 index = 1;
|
|
}
|