load("//hack/build/rules/shellcheck:shellcheck.bzl", "shellcheck_test") package( default_visibility = ["//visibility:public"], ) shellcheck_test( srcs = glob([ "*.sh", "update/*.sh", "verify/*.sh", ]), ) filegroup( name = "graphiql", # buildifier: disable=constant-glob srcs = glob(["graphiql/*"]), visibility = ["//visibility:public"], ) # tools that are linked to $PATH by default filegroup( name = "tools_to_link", srcs = [ "//cmd/edge/edge", "//cmd/edge/edgeadmin", "//cmd/edge/monitoring/alertman", "//cmd/edge/monitoring/dashman", "//cmd/f8n/warehouse/lift", "//cmd/f8n/warehouse/packagelock", "//cmd/f8n/warehouse/promote", "//cmd/tools/hack", "//hack/tools:apko", "//hack/tools:argo", "//hack/tools:buildifier", "//hack/tools:buildozer", "//hack/tools:cloud_sql_proxy", "//hack/tools:etcd", "//hack/tools:flux", "//hack/tools:golangci-lint", "//hack/tools:k3d", "//hack/tools:kind", "//hack/tools:kube-apiserver", "//hack/tools:kubectl", "//hack/tools:kustomize", "//hack/tools:lua", "//hack/tools:sonobuoy", "//hack/tools:target-determinator", "//hack/tools:yq", "//test/rosa", "//third_party/gopherage", "@com_github_drone_envsubst_v2//cmd/envsubst", "@com_github_google_go_containerregistry//cmd/crane", "@com_github_google_go_containerregistry//cmd/gcrane", "@org_cuelang_go//cmd/cue", ], )