mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 16:31:47 +00:00
21 lines
519 B
Python
21 lines
519 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "bkstats_lib",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/sourcegraph/sourcegraph/dev/bkstats",
|
|
tags = [TAG_INFRA_DEVINFRA],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//lib/errors",
|
|
"@com_github_buildkite_go_buildkite_v3//buildkite",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "bkstats",
|
|
embed = [":bkstats_lib"],
|
|
tags = [TAG_INFRA_DEVINFRA],
|
|
visibility = ["//visibility:public"],
|
|
)
|