19 lines
363 B
Python
19 lines
363 B
Python
load("@databuild//:rules.bzl", "databuild_job")
|
|
|
|
databuild_job(
|
|
name = "test_job",
|
|
configure = ":test_job_configure",
|
|
execute = ":test_job_execute",
|
|
)
|
|
|
|
py_binary(
|
|
name = "test_job_configure",
|
|
srcs = ["configure.py"],
|
|
main = "configure.py",
|
|
)
|
|
|
|
py_binary(
|
|
name = "test_job_execute",
|
|
srcs = ["execute.py"],
|
|
main = "execute.py",
|
|
)
|