load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "render", srcs = [ "layer.go", "render.go", ], importpath = "edge-infra.dev/pkg/f8n/warehouse/lift/render", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/warehouse/lift", "//pkg/f8n/warehouse/oci/layer", "//pkg/lib/uuid", "@com_github_drone_envsubst_v2//:envsubst", ], ) go_test( name = "render_test", srcs = ["render_test.go"], data = glob(["testdata/**"]), embed = [":render"], embedsrcs = ["testdata/pallet.yaml"], deps = ["@com_github_stretchr_testify//assert"], )