Skip to content

Commit bd6eaca

Browse files
committed
bazel-registry: Add zipkin-api@1.0.0.envoy
Signed-off-by: Ryan Northey <ryan@synca.io>
1 parent 55268b9 commit bd6eaca

File tree

5 files changed

+68
-0
lines changed

5 files changed

+68
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module(
2+
name = "zipkin-api",
3+
version = "1.0.0.envoy",
4+
compatibility_level = 1,
5+
)
6+
7+
bazel_dep(name = "protobuf", version = "33.4.envoy")
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
load("@protobuf//bazel:proto_library.bzl", "proto_library")
2+
load("@protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
3+
4+
proto_library(
5+
name = "zipkin_proto",
6+
srcs = [
7+
"zipkin.proto",
8+
],
9+
visibility = ["//visibility:public"],
10+
)
11+
12+
proto_library(
13+
name = "zipkin_jsonv2_proto",
14+
srcs = [
15+
"zipkin-jsonv2.proto",
16+
],
17+
visibility = ["//visibility:public"],
18+
)
19+
20+
cc_proto_library(
21+
name = "zipkin-api",
22+
deps = [":zipkin_proto"],
23+
visibility = ["//visibility:public"],
24+
)
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
matrix:
2+
platform:
3+
- debian10
4+
- ubuntu2004
5+
- macos
6+
- macos_arm64
7+
- windows
8+
bazel:
9+
- 7.x
10+
- 6.x
11+
tasks:
12+
verify_targets:
13+
name: Verify build targets
14+
platform: ${{ platform }}
15+
bazel: ${{ bazel }}
16+
build_targets:
17+
- '@zipkin-api//:zipkin_proto'
18+
- '@zipkin-api//:zipkin_jsonv2_proto'
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"url": "https://github.com/openzipkin/zipkin-api/archive/refs/tags/1.0.0.tar.gz",
3+
"integrity": "sha256-bI7iAUzwdGukUuXywB8DjfYOhestkQsib5qifdwORM8=",
4+
"strip_prefix": "zipkin-api-1.0.0",
5+
"overlay": {
6+
"BUILD.bazel": "sha256-LVCoRlDdrZtsCIk8QMW0Ps27cSNNrMAhwG1uVJfMZwQ="
7+
}
8+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"homepage": "https://github.com/openzipkin/zipkin-api",
3+
"maintainers": [],
4+
"repository": [
5+
"github:openzipkin/zipkin-api"
6+
],
7+
"versions": [
8+
"1.0.0.envoy"
9+
],
10+
"yanked_versions": {}
11+
}

0 commit comments

Comments
 (0)