Skip to content

Commit 02cfac9

Browse files
committed
Regenerate Protobuf implementations
Regenerated using: * github.com/containerd/protobuild@main (6b023c693abe4cd44e59ada8bdf496eb2572d9a6 - @latest fails to install) * github.com/containerd/containerd/cmd/protoc-gen-gogoctrd@latest (v1.5.5) * protoc-3.18.0-win64, with the includes coped to ./protobuf ```bash go list ./... | grep -v vendor | xargs echo protobuild ``` and then ran the resulting command-line in PowerShell where I had the rest of my Go setup, because I don't know what the PowerShell equivalent of xargs is. Because I did this on Windows, it highlighted a fascinating surprise behaviour in protobuild, which matches prefixes for its overrides using filesystem paths, not the module paths. I guess this means every previous update was done under Linux or a Cygwin-derived environment. Signed-off-by: Paul "TBBle" Hampson <[email protected]>
1 parent baeb774 commit 02cfac9

File tree

15 files changed

+4278
-4266
lines changed

15 files changed

+4278
-4266
lines changed

Protobuild.toml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,28 @@ plugins = ["grpc", "fieldpath"]
3333
"github/containerd/cgroups/stats/v1/metrics.proto" = "github.com/containerd/cgroups/stats/v1"
3434

3535
[[overrides]]
36-
prefixes = ["github.com/Microsoft/hcsshim/internal/shimdiag"]
36+
prefixes = [
37+
"github.com/Microsoft/hcsshim/internal/shimdiag",
38+
"github.com\\Microsoft\\hcsshim\\internal\\shimdiag",
39+
]
3740
plugins = ["ttrpc"]
3841

3942
[[overrides]]
40-
prefixes = ["github.com/Microsoft/hcsshim/internal/computeagent"]
43+
prefixes = [
44+
"github.com/Microsoft/hcsshim/internal/computeagent",
45+
"github.com\\Microsoft\\hcsshim\\internal\\computeagent"
46+
]
4147
plugins = ["ttrpc"]
4248

4349
[[overrides]]
44-
prefixes = ["github.com/Microsoft/hcsshim/internal/ncproxyttrpc"]
50+
prefixes = [
51+
"github.com/Microsoft/hcsshim/internal/ncproxyttrpc",
52+
"github.com\\Microsoft\\hcsshim\\internal\\ncproxyttrpc"]
4553
plugins = ["ttrpc"]
4654

4755
[[overrides]]
48-
prefixes = ["github.com/Microsoft/hcsshim/internal/vmservice"]
56+
prefixes = [
57+
"github.com/Microsoft/hcsshim/internal/vmservice",
58+
"github.com\\Microsoft\\hcsshim\\internal\\vmservice"
59+
]
4960
plugins = ["ttrpc"]

0 commit comments

Comments
 (0)