From 202a7994c2f40c0b82b250735836e28073e7fbbc Mon Sep 17 00:00:00 2001 From: Mike Fridman Date: Mon, 17 Jul 2023 09:36:12 -0400 Subject: [PATCH] Add grpc/* v1.56.2 --- plugins/grpc/cpp/v1.56.2/.dockerignore | 2 ++ plugins/grpc/cpp/v1.56.2/Dockerfile | 23 +++++++++++++++++++ plugins/grpc/cpp/v1.56.2/buf.plugin.yaml | 11 +++++++++ plugins/grpc/csharp/v1.56.2/.dockerignore | 2 ++ plugins/grpc/csharp/v1.56.2/Dockerfile | 23 +++++++++++++++++++ plugins/grpc/csharp/v1.56.2/buf.plugin.yaml | 11 +++++++++ plugins/grpc/objc/v1.56.2/.dockerignore | 2 ++ plugins/grpc/objc/v1.56.2/Dockerfile | 23 +++++++++++++++++++ plugins/grpc/objc/v1.56.2/buf.plugin.yaml | 11 +++++++++ plugins/grpc/php/v1.56.2/.dockerignore | 2 ++ plugins/grpc/php/v1.56.2/Dockerfile | 23 +++++++++++++++++++ plugins/grpc/php/v1.56.2/buf.plugin.yaml | 11 +++++++++ plugins/grpc/python/v1.56.2/.dockerignore | 2 ++ plugins/grpc/python/v1.56.2/Dockerfile | 23 +++++++++++++++++++ plugins/grpc/python/v1.56.2/buf.plugin.yaml | 11 +++++++++ plugins/grpc/ruby/v1.56.2/.dockerignore | 2 ++ plugins/grpc/ruby/v1.56.2/Dockerfile | 23 +++++++++++++++++++ plugins/grpc/ruby/v1.56.2/buf.plugin.yaml | 11 +++++++++ .../grpc/cpp/v1.56.2/eliza/plugin.sum | 1 + .../grpc/cpp/v1.56.2/petapis/plugin.sum | 1 + .../grpc/csharp/v1.56.2/eliza/plugin.sum | 1 + .../grpc/csharp/v1.56.2/petapis/plugin.sum | 1 + .../grpc/objc/v1.56.2/eliza/plugin.sum | 1 + .../grpc/objc/v1.56.2/petapis/plugin.sum | 1 + .../grpc/php/v1.56.2/eliza/plugin.sum | 1 + .../grpc/php/v1.56.2/petapis/plugin.sum | 1 + .../grpc/python/v1.56.2/eliza/plugin.sum | 1 + .../grpc/python/v1.56.2/petapis/plugin.sum | 1 + .../grpc/ruby/v1.56.2/eliza/plugin.sum | 1 + .../grpc/ruby/v1.56.2/petapis/plugin.sum | 1 + 30 files changed, 228 insertions(+) create mode 100644 plugins/grpc/cpp/v1.56.2/.dockerignore create mode 100644 plugins/grpc/cpp/v1.56.2/Dockerfile create mode 100644 plugins/grpc/cpp/v1.56.2/buf.plugin.yaml create mode 100644 plugins/grpc/csharp/v1.56.2/.dockerignore create mode 100644 plugins/grpc/csharp/v1.56.2/Dockerfile create mode 100644 plugins/grpc/csharp/v1.56.2/buf.plugin.yaml create mode 100644 plugins/grpc/objc/v1.56.2/.dockerignore create mode 100644 plugins/grpc/objc/v1.56.2/Dockerfile create mode 100644 plugins/grpc/objc/v1.56.2/buf.plugin.yaml create mode 100644 plugins/grpc/php/v1.56.2/.dockerignore create mode 100644 plugins/grpc/php/v1.56.2/Dockerfile create mode 100644 plugins/grpc/php/v1.56.2/buf.plugin.yaml create mode 100644 plugins/grpc/python/v1.56.2/.dockerignore create mode 100644 plugins/grpc/python/v1.56.2/Dockerfile create mode 100644 plugins/grpc/python/v1.56.2/buf.plugin.yaml create mode 100644 plugins/grpc/ruby/v1.56.2/.dockerignore create mode 100644 plugins/grpc/ruby/v1.56.2/Dockerfile create mode 100644 plugins/grpc/ruby/v1.56.2/buf.plugin.yaml create mode 100644 tests/testdata/buf.build/grpc/cpp/v1.56.2/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/cpp/v1.56.2/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/csharp/v1.56.2/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/csharp/v1.56.2/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/objc/v1.56.2/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/objc/v1.56.2/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/php/v1.56.2/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/php/v1.56.2/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/python/v1.56.2/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/python/v1.56.2/petapis/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/ruby/v1.56.2/eliza/plugin.sum create mode 100644 tests/testdata/buf.build/grpc/ruby/v1.56.2/petapis/plugin.sum diff --git a/plugins/grpc/cpp/v1.56.2/.dockerignore b/plugins/grpc/cpp/v1.56.2/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/cpp/v1.56.2/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/cpp/v1.56.2/Dockerfile b/plugins/grpc/cpp/v1.56.2/Dockerfile new file mode 100644 index 000000000..e0e024a42 --- /dev/null +++ b/plugins/grpc/cpp/v1.56.2/Dockerfile @@ -0,0 +1,23 @@ +# syntax=docker/dockerfile:1.4 +FROM debian:bullseye-20230703 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config g++ unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/6.2.1/bazel-6.2.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.56.2 --recursive https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_cpp_plugin.stripped + +FROM gcr.io/distroless/cc-debian11 +COPY --from=build --link --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_cpp_plugin . +USER nobody +ENTRYPOINT ["/grpc_cpp_plugin"] diff --git a/plugins/grpc/cpp/v1.56.2/buf.plugin.yaml b/plugins/grpc/cpp/v1.56.2/buf.plugin.yaml new file mode 100644 index 000000000..598ce5957 --- /dev/null +++ b/plugins/grpc/cpp/v1.56.2/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/cpp +plugin_version: v1.56.2 +source_url: https://github.com/grpc/grpc +description: Generates C++ client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/cpp:v23.4 +output_languages: + - cpp +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.56.2/LICENSE diff --git a/plugins/grpc/csharp/v1.56.2/.dockerignore b/plugins/grpc/csharp/v1.56.2/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/csharp/v1.56.2/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/csharp/v1.56.2/Dockerfile b/plugins/grpc/csharp/v1.56.2/Dockerfile new file mode 100644 index 000000000..d1add59e6 --- /dev/null +++ b/plugins/grpc/csharp/v1.56.2/Dockerfile @@ -0,0 +1,23 @@ +# syntax=docker/dockerfile:1.4 +FROM debian:bullseye-20230703 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config g++ unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/6.2.1/bazel-6.2.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.56.2 --recursive https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_csharp_plugin.stripped + +FROM gcr.io/distroless/cc-debian11 +COPY --from=build --link --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_csharp_plugin . +USER nobody +ENTRYPOINT ["/grpc_csharp_plugin"] diff --git a/plugins/grpc/csharp/v1.56.2/buf.plugin.yaml b/plugins/grpc/csharp/v1.56.2/buf.plugin.yaml new file mode 100644 index 000000000..08332624d --- /dev/null +++ b/plugins/grpc/csharp/v1.56.2/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/csharp +plugin_version: v1.56.2 +source_url: https://github.com/grpc/grpc +description: Generates C# client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/csharp:v23.4 +output_languages: + - csharp +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.56.2/LICENSE diff --git a/plugins/grpc/objc/v1.56.2/.dockerignore b/plugins/grpc/objc/v1.56.2/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/objc/v1.56.2/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/objc/v1.56.2/Dockerfile b/plugins/grpc/objc/v1.56.2/Dockerfile new file mode 100644 index 000000000..292fadd20 --- /dev/null +++ b/plugins/grpc/objc/v1.56.2/Dockerfile @@ -0,0 +1,23 @@ +# syntax=docker/dockerfile:1.4 +FROM debian:bullseye-20230703 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config g++ unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/6.2.1/bazel-6.2.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.56.2 --recursive https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_objective_c_plugin.stripped + +FROM gcr.io/distroless/cc-debian11 +COPY --from=build --link --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_objective_c_plugin . +USER nobody +ENTRYPOINT ["/grpc_objective_c_plugin"] diff --git a/plugins/grpc/objc/v1.56.2/buf.plugin.yaml b/plugins/grpc/objc/v1.56.2/buf.plugin.yaml new file mode 100644 index 000000000..8082b63fb --- /dev/null +++ b/plugins/grpc/objc/v1.56.2/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/objc +plugin_version: v1.56.2 +source_url: https://github.com/grpc/grpc +description: Generates Objective-C client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/objc:v23.4 +output_languages: + - objective_c +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.56.2/LICENSE diff --git a/plugins/grpc/php/v1.56.2/.dockerignore b/plugins/grpc/php/v1.56.2/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/php/v1.56.2/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/php/v1.56.2/Dockerfile b/plugins/grpc/php/v1.56.2/Dockerfile new file mode 100644 index 000000000..79690258b --- /dev/null +++ b/plugins/grpc/php/v1.56.2/Dockerfile @@ -0,0 +1,23 @@ +# syntax=docker/dockerfile:1.4 +FROM debian:bullseye-20230703 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config g++ unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/6.2.1/bazel-6.2.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.56.2 --recursive https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_php_plugin.stripped + +FROM gcr.io/distroless/cc-debian11 +COPY --from=build --link --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_php_plugin . +USER nobody +ENTRYPOINT ["/grpc_php_plugin"] diff --git a/plugins/grpc/php/v1.56.2/buf.plugin.yaml b/plugins/grpc/php/v1.56.2/buf.plugin.yaml new file mode 100644 index 000000000..b1fab1c46 --- /dev/null +++ b/plugins/grpc/php/v1.56.2/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/php +plugin_version: v1.56.2 +source_url: https://github.com/grpc/grpc +description: Generates PHP client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/php:v23.4 +output_languages: + - php +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.56.2/LICENSE diff --git a/plugins/grpc/python/v1.56.2/.dockerignore b/plugins/grpc/python/v1.56.2/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/python/v1.56.2/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/python/v1.56.2/Dockerfile b/plugins/grpc/python/v1.56.2/Dockerfile new file mode 100644 index 000000000..030177a67 --- /dev/null +++ b/plugins/grpc/python/v1.56.2/Dockerfile @@ -0,0 +1,23 @@ +# syntax=docker/dockerfile:1.4 +FROM debian:bullseye-20230703 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config g++ unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/6.2.1/bazel-6.2.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.56.2 --recursive https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_python_plugin.stripped + +FROM gcr.io/distroless/cc-debian11 +COPY --from=build --link --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_python_plugin . +USER nobody +ENTRYPOINT ["/grpc_python_plugin"] diff --git a/plugins/grpc/python/v1.56.2/buf.plugin.yaml b/plugins/grpc/python/v1.56.2/buf.plugin.yaml new file mode 100644 index 000000000..9a1c54f38 --- /dev/null +++ b/plugins/grpc/python/v1.56.2/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/python +plugin_version: v1.56.2 +source_url: https://github.com/grpc/grpc +description: Generates Python client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/python:v23.4 +output_languages: + - python +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.56.2/LICENSE diff --git a/plugins/grpc/ruby/v1.56.2/.dockerignore b/plugins/grpc/ruby/v1.56.2/.dockerignore new file mode 100644 index 000000000..5d0f124ff --- /dev/null +++ b/plugins/grpc/ruby/v1.56.2/.dockerignore @@ -0,0 +1,2 @@ +* +!Dockerfile diff --git a/plugins/grpc/ruby/v1.56.2/Dockerfile b/plugins/grpc/ruby/v1.56.2/Dockerfile new file mode 100644 index 000000000..0af66207e --- /dev/null +++ b/plugins/grpc/ruby/v1.56.2/Dockerfile @@ -0,0 +1,23 @@ +# syntax=docker/dockerfile:1.4 +FROM debian:bullseye-20230703 AS build + +ARG TARGETARCH + +RUN apt-get update \ + && apt-get install -y curl git cmake build-essential autoconf clang libc++-dev libtool pkg-config g++ unzip zip +RUN arch=${TARGETARCH}; \ + if [ "${arch}" = "amd64" ]; then arch="x86_64"; fi; \ + curl -fsSL -o /usr/local/bin/bazel https://github.com/bazelbuild/bazel/releases/download/6.2.1/bazel-6.2.1-linux-${arch} \ + && chmod +x /usr/local/bin/bazel + +WORKDIR /build + +RUN git clone --depth 1 --branch v1.56.2 --recursive https://github.com/grpc/grpc +WORKDIR /build/grpc +RUN bazel build //src/compiler:grpc_plugin_support +RUN bazel build //src/compiler:grpc_ruby_plugin.stripped + +FROM gcr.io/distroless/cc-debian11 +COPY --from=build --link --chmod=0755 /build/grpc/bazel-bin/src/compiler/grpc_ruby_plugin . +USER nobody +ENTRYPOINT ["/grpc_ruby_plugin"] diff --git a/plugins/grpc/ruby/v1.56.2/buf.plugin.yaml b/plugins/grpc/ruby/v1.56.2/buf.plugin.yaml new file mode 100644 index 000000000..e3e02579b --- /dev/null +++ b/plugins/grpc/ruby/v1.56.2/buf.plugin.yaml @@ -0,0 +1,11 @@ +version: v1 +name: buf.build/grpc/ruby +plugin_version: v1.56.2 +source_url: https://github.com/grpc/grpc +description: Generates Ruby client and server stubs for the gRPC framework. +deps: + - plugin: buf.build/protocolbuffers/ruby:v23.4 +output_languages: + - ruby +spdx_license_id: Apache-2.0 +license_url: https://github.com/grpc/grpc/blob/v1.56.2/LICENSE diff --git a/tests/testdata/buf.build/grpc/cpp/v1.56.2/eliza/plugin.sum b/tests/testdata/buf.build/grpc/cpp/v1.56.2/eliza/plugin.sum new file mode 100644 index 000000000..11d7bae9c --- /dev/null +++ b/tests/testdata/buf.build/grpc/cpp/v1.56.2/eliza/plugin.sum @@ -0,0 +1 @@ +h1:+TEOhXAY3kEbot+Yi4zMrlVqpygzcZGd8rNsYRm1K/c= diff --git a/tests/testdata/buf.build/grpc/cpp/v1.56.2/petapis/plugin.sum b/tests/testdata/buf.build/grpc/cpp/v1.56.2/petapis/plugin.sum new file mode 100644 index 000000000..d1fd57a3e --- /dev/null +++ b/tests/testdata/buf.build/grpc/cpp/v1.56.2/petapis/plugin.sum @@ -0,0 +1 @@ +h1:QNggIsJlvPRCdsT8EEOrIhD3r6tTDrD6KOna3Fue4JE= diff --git a/tests/testdata/buf.build/grpc/csharp/v1.56.2/eliza/plugin.sum b/tests/testdata/buf.build/grpc/csharp/v1.56.2/eliza/plugin.sum new file mode 100644 index 000000000..7cece6abd --- /dev/null +++ b/tests/testdata/buf.build/grpc/csharp/v1.56.2/eliza/plugin.sum @@ -0,0 +1 @@ +h1:BVCDqYwFBLMbpdwhUznEKZl71YGKzWxQjMCWHshAvzA= diff --git a/tests/testdata/buf.build/grpc/csharp/v1.56.2/petapis/plugin.sum b/tests/testdata/buf.build/grpc/csharp/v1.56.2/petapis/plugin.sum new file mode 100644 index 000000000..a0b097761 --- /dev/null +++ b/tests/testdata/buf.build/grpc/csharp/v1.56.2/petapis/plugin.sum @@ -0,0 +1 @@ +h1:DqIk9tDTR6qNlwrVsz667IxNJfMGL2dLcjanmrIkTvU= diff --git a/tests/testdata/buf.build/grpc/objc/v1.56.2/eliza/plugin.sum b/tests/testdata/buf.build/grpc/objc/v1.56.2/eliza/plugin.sum new file mode 100644 index 000000000..4a8ce4e1b --- /dev/null +++ b/tests/testdata/buf.build/grpc/objc/v1.56.2/eliza/plugin.sum @@ -0,0 +1 @@ +h1:xH0+e+UVLoU5KFcWSB5RfrGIxbyztCgFOquLQjg2/ps= diff --git a/tests/testdata/buf.build/grpc/objc/v1.56.2/petapis/plugin.sum b/tests/testdata/buf.build/grpc/objc/v1.56.2/petapis/plugin.sum new file mode 100644 index 000000000..7a01cb23f --- /dev/null +++ b/tests/testdata/buf.build/grpc/objc/v1.56.2/petapis/plugin.sum @@ -0,0 +1 @@ +h1:P+OQBrxyTpehogGY3ZUlcIQ2pRq1iA9xpxjKXSN7u2E= diff --git a/tests/testdata/buf.build/grpc/php/v1.56.2/eliza/plugin.sum b/tests/testdata/buf.build/grpc/php/v1.56.2/eliza/plugin.sum new file mode 100644 index 000000000..350cc30e3 --- /dev/null +++ b/tests/testdata/buf.build/grpc/php/v1.56.2/eliza/plugin.sum @@ -0,0 +1 @@ +h1:gCX+94Y87fKbGc7nBkZ5sqxwMypA12/rrOdVb9YaOkY= diff --git a/tests/testdata/buf.build/grpc/php/v1.56.2/petapis/plugin.sum b/tests/testdata/buf.build/grpc/php/v1.56.2/petapis/plugin.sum new file mode 100644 index 000000000..2f2d65d31 --- /dev/null +++ b/tests/testdata/buf.build/grpc/php/v1.56.2/petapis/plugin.sum @@ -0,0 +1 @@ +h1:0h6mmZ/IPFQQD8Mq95Adum4ekVPiiZy05xjy3uqhI48= diff --git a/tests/testdata/buf.build/grpc/python/v1.56.2/eliza/plugin.sum b/tests/testdata/buf.build/grpc/python/v1.56.2/eliza/plugin.sum new file mode 100644 index 000000000..4a8ab4cda --- /dev/null +++ b/tests/testdata/buf.build/grpc/python/v1.56.2/eliza/plugin.sum @@ -0,0 +1 @@ +h1:GlLkV9ApTmV1JlX39sBp45T+GULZqM/K3CY3uP6m9uk= diff --git a/tests/testdata/buf.build/grpc/python/v1.56.2/petapis/plugin.sum b/tests/testdata/buf.build/grpc/python/v1.56.2/petapis/plugin.sum new file mode 100644 index 000000000..a6a9e8f39 --- /dev/null +++ b/tests/testdata/buf.build/grpc/python/v1.56.2/petapis/plugin.sum @@ -0,0 +1 @@ +h1:ZFJ5d/x8COnHlnUl1vnVoCoVOR0MyRWgxZxWgPj+Qag= diff --git a/tests/testdata/buf.build/grpc/ruby/v1.56.2/eliza/plugin.sum b/tests/testdata/buf.build/grpc/ruby/v1.56.2/eliza/plugin.sum new file mode 100644 index 000000000..d04ee7f9b --- /dev/null +++ b/tests/testdata/buf.build/grpc/ruby/v1.56.2/eliza/plugin.sum @@ -0,0 +1 @@ +h1:y47G0y23L+GoClu0Kfl4ZgiV++TIrlmPeBxw0sKANjA= diff --git a/tests/testdata/buf.build/grpc/ruby/v1.56.2/petapis/plugin.sum b/tests/testdata/buf.build/grpc/ruby/v1.56.2/petapis/plugin.sum new file mode 100644 index 000000000..7e7dee7f8 --- /dev/null +++ b/tests/testdata/buf.build/grpc/ruby/v1.56.2/petapis/plugin.sum @@ -0,0 +1 @@ +h1:jT5MBhIRa08sICxgjVvNAQgauC2GnD8G9OZ64P+N5gY=