...

Text file src/edge-infra.dev/hack/BUILD.bazel

Documentation: edge-infra.dev/hack

     1load("//hack/build/rules/shellcheck:shellcheck.bzl", "shellcheck_test")
     2
     3package(
     4    default_visibility = ["//visibility:public"],
     5)
     6
     7shellcheck_test(
     8    srcs = glob([
     9        "*.sh",
    10        "update/*.sh",
    11        "verify/*.sh",
    12    ]),
    13)
    14
    15filegroup(
    16    name = "graphiql",
    17    # buildifier: disable=constant-glob
    18    srcs = glob(["graphiql/*"]),
    19    visibility = ["//visibility:public"],
    20)
    21
    22# tools that are linked to $PATH by default
    23filegroup(
    24    name = "tools_to_link",
    25    srcs = [
    26        "//cmd/edge/edge",
    27        "//cmd/edge/edgeadmin",
    28        "//cmd/edge/monitoring/alertman",
    29        "//cmd/edge/monitoring/dashman",
    30        "//cmd/f8n/warehouse/lift",
    31        "//cmd/f8n/warehouse/packagelock",
    32        "//cmd/f8n/warehouse/promote",
    33        "//cmd/tools/hack",
    34        "//hack/tools:apko",
    35        "//hack/tools:argo",
    36        "//hack/tools:buildifier",
    37        "//hack/tools:buildozer",
    38        "//hack/tools:cloud_sql_proxy",
    39        "//hack/tools:etcd",
    40        "//hack/tools:flux",
    41        "//hack/tools:golangci-lint",
    42        "//hack/tools:k3d",
    43        "//hack/tools:kind",
    44        "//hack/tools:kube-apiserver",
    45        "//hack/tools:kubectl",
    46        "//hack/tools:kustomize",
    47        "//hack/tools:lua",
    48        "//hack/tools:sonobuoy",
    49        "//hack/tools:target-determinator",
    50        "//hack/tools:yq",
    51        "//test/rosa",
    52        "//third_party/gopherage",
    53        "@com_github_drone_envsubst_v2//cmd/envsubst",
    54        "@com_github_google_go_containerregistry//cmd/crane",
    55        "@com_github_google_go_containerregistry//cmd/gcrane",
    56        "@org_cuelang_go//cmd/cue",
    57    ],
    58)

View as plain text