18 lines
353 B
Python
18 lines
353 B
Python
load("@databuild//:rules.bzl", "databuild_job")
|
|
|
|
databuild_job(
|
|
name = "test_job",
|
|
configure = ":test_job_configure",
|
|
execute = ":test_job_execute",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
sh_binary(
|
|
name = "test_job_configure",
|
|
srcs = ["configure.sh"],
|
|
)
|
|
|
|
sh_binary(
|
|
name = "test_job_execute",
|
|
srcs = ["execute.sh"],
|
|
)
|