|
|
|
load("@rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "echo_lib",
|
|
|
|
srcs = ["main.go"],
|
|
|
|
importpath = "code.ndumas.com/ndumas/gomud/cmd/echo",
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
deps = [
|
|
|
|
"//logger",
|
|
|
|
"//telnet",
|
|
|
|
"@com_github_threedotslabs_watermill//:watermill",
|
|
|
|
"@com_github_threedotslabs_watermill//message",
|
|
|
|
"@com_github_threedotslabs_watermill//message/router/middleware",
|
|
|
|
"@com_github_threedotslabs_watermill//message/router/plugin",
|
|
|
|
"@com_github_threedotslabs_watermill//pubsub/gochannel",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_binary(
|
|
|
|
name = "echo",
|
|
|
|
embed = [":echo_lib"],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
x_defs = {
|
|
|
|
"code.ndumas.com/ndumas/gomud.Version":"STABLE_GIT_VERSION",
|
|
|
|
"code.ndumas.com/ndumas/gomud.Build":"STABLE_GIT_COMMIT",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
load("@rules_pkg//:pkg.bzl", "pkg_tar")
|
|
|
|
|
|
|
|
pkg_tar(
|
|
|
|
name = "tar",
|
|
|
|
srcs = [":echo"],
|
|
|
|
)
|
|
|
|
|
|
|
|
load("@rules_oci//oci:defs.bzl", "oci_image", "oci_push")
|
|
|
|
|
|
|
|
oci_image(
|
|
|
|
name = "image",
|
|
|
|
base = "@distroless_base",
|
|
|
|
entrypoint = ["/echo"],
|
|
|
|
tars = [":tar"],
|
|
|
|
)
|
|
|
|
|
|
|
|
oci_push(
|
|
|
|
name = "registry",
|
|
|
|
image = ":image",
|
|
|
|
remote_tags = ["latest"],
|
|
|
|
repository = "code.ndumas.com/ndumas/gomud",
|
|
|
|
)
|