mirror of
https://github.com/moby/buildkit.git
synced 2026-06-24 08:47:57 +00:00
The relative paths option for protoc generators doesn't work well when it comes to dependencies. This simplifies the code generation to avoid using `go generate` and to use one global command for protoc generation. This is similar to https://github.com/docker/buildx/pull/2713 since the same problems with code generation occur here too. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
20 lines
303 B
Protocol Buffer
20 lines
303 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package stack;
|
|
|
|
option go_package = "github.com/moby/buildkit/util/stack";
|
|
|
|
message Stack {
|
|
repeated Frame frames = 1;
|
|
repeated string cmdline = 2;
|
|
int32 pid = 3;
|
|
string version = 4;
|
|
string revision = 5;
|
|
}
|
|
|
|
message Frame {
|
|
string Name = 1;
|
|
string File = 2;
|
|
int32 Line = 3;
|
|
}
|