mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-15 02:01:25 +00:00
31 lines
717 B
Python
31 lines
717 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||
|
load("//rules_byc:defs.bzl", "container")
|
||
|
|
||
|
go_library(
|
||
|
name = "secparsecron_lib",
|
||
|
srcs = ["main.go"],
|
||
|
importpath = "peridot.resf.org/secparse/cmd/secparsecron",
|
||
|
visibility = ["//visibility:private"],
|
||
|
deps = [
|
||
|
"//secparse/cron",
|
||
|
"//secparse/db/connector",
|
||
|
"//utils",
|
||
|
"//vendor/github.com/sirupsen/logrus",
|
||
|
"//vendor/github.com/spf13/cobra",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_binary(
|
||
|
name = "secparsecron",
|
||
|
embed = [":secparsecron_lib"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
container(
|
||
|
base = "//bases/bazel/go",
|
||
|
files = [
|
||
|
":secparsecron",
|
||
|
],
|
||
|
image_name = "secparsecron",
|
||
|
)
|