...

Text file src/edge-infra.dev/pkg/f8n/warehouse/lift/cmd/pack/BUILD.bazel

Documentation: edge-infra.dev/pkg/f8n/warehouse/lift/cmd/pack

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "pack",
     5    srcs = ["pack.go"],
     6    importpath = "edge-infra.dev/pkg/f8n/warehouse/lift/cmd/pack",
     7    visibility = ["//visibility:public"],
     8    deps = [
     9        "//pkg/f8n/warehouse/lift",
    10        "//pkg/f8n/warehouse/lift/cmd/internal",
    11        "//pkg/f8n/warehouse/lift/pack/types",
    12        "//pkg/f8n/warehouse/oci/layout",
    13        "//pkg/f8n/warehouse/oci/name",
    14        "//pkg/f8n/warehouse/oci/remote",
    15        "//pkg/f8n/warehouse/pallet/resolve",
    16        "//pkg/lib/cli/rags",
    17        "//pkg/lib/cli/sink",
    18        "@io_k8s_sigs_kustomize_kyaml//filesys",
    19    ],
    20)
    21
    22go_test(
    23    name = "pack_test",
    24    srcs = ["pack_test.go"],
    25    data = ["//cmd/f8n/warehouse/lift"],
    26    embed = [":pack"],
    27    deps = [
    28        "//pkg/f8n/warehouse/lift/cmd/internal/lifttest",
    29        "//pkg/f8n/warehouse/whtest/registry",
    30        "//pkg/k8s/kustomize",
    31        "//pkg/lib/build/bazel",
    32        "//test/fixtures",
    33        "@com_github_google_go_containerregistry//pkg/name",
    34        "@com_github_stretchr_testify//assert",
    35        "@tools_gotest_v3//icmd",
    36    ],
    37)

View as plain text