Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ git_repository(

git_repository(
name = "improbable_platform",
commit = "6c58483a01ae53c8e515e40906106a473b35411b",
commit = "e76746e8d4fe6078cdd25bc8bf720fbb3965a1c5",
remote = "git@github.com:improbable/platform.git",
# Hello! Are you updating the commit of the platform repo dependency? This comment is for you!
# The "shallow_since" field must be set to the day *before* the day of the commit. You can run
# the following script inside the *platform* repo to determine the value you should put in the
# "shallow_since" field based on the commit (replace <commit> with the actual commit hash):
# $ date --date="$(git show --pretty=format:'%cD' <commit> | head --lines=1)-1 day" "+%F"
shallow_since = "2019-09-17",
shallow_since = "2019-09-18",
# TODO(WRK-944): Due to the use by this repository of an older Bazel version we need to apply a
# patch to the imported version of the Platform repository to maintain
# compatibility.
Expand Down
37 changes: 37 additions & 0 deletions apis/deployment_v1beta1/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package(default_visibility = ["//visibility:public"])

load("//apis:rules.bzl", "gapic_generator_codegen")

gapic_generator_codegen(
name = "gapic",
outs = [
"deployment_gapicout/Improbable.SpatialOS.Deployment.V1Beta1/Improbable.SpatialOS.Deployment.V1Beta1/DeploymentServiceClient.cs"
],
descriptor_set = "//apis:platform_api_descriptor_set",
gapic_yaml = "@improbable_platform//proto/improbable/spatialos/deployment/v1beta1:csharp_gapic",
package_yaml = "//apis:package_yaml",
service_yaml = "@improbable_platform//proto/improbable/spatialos/deployment:deployment_v1beta1.yaml",
)

load("@org_pubref_rules_protobuf//csharp:rules.bzl", "csharp_proto_compile")
csharp_proto_compile(
name = "grpc",
imports = [
"external/com_github_googleapis_googleapis/",
"external/com_github_improbable_io_go_proto_logfields_proto/",
"external/com_github_mwitkow_go_proto_validators_proto/",
"external/com_google_protobuf/src/",
"external/improbable_protoc_gen_gocli/",
],
inputs = [
"@com_github_googleapis_googleapis//:important_protos",
"@com_github_mwitkow_go_proto_validators_proto//:proto",
"@com_github_improbable_io_go_proto_logfields_proto//:proto",
"@com_google_protobuf//:well_known_protos",
"@improbable_protoc_gen_gocli//:proto",
],
protos = [
"@improbable_platform//proto/improbable/spatialos/deployment/v1beta1:protos",
],
with_grpc = True,
)
5,287 changes: 5,287 additions & 0 deletions apis/deployment_v1beta1/Deployment.cs

Large diffs are not rendered by default.

740 changes: 740 additions & 0 deletions apis/deployment_v1beta1/DeploymentGrpc.cs

Large diffs are not rendered by default.

1,526 changes: 1,526 additions & 0 deletions apis/deployment_v1beta1/DeploymentServiceClient.cs

Large diffs are not rendered by default.

Loading