Update some of the build infra

This commit is contained in:
Reid 'arrdem' McKenzie 2022-11-19 23:54:45 -07:00
commit 4faa29c124
3 changed files with 76 additions and 5 deletions
tools
build_rules
python

View file

@ -30,3 +30,10 @@ load("//tools/build_rules:webp.bzl",
load("@rules_zapp//zapp:zapp.bzl",
"zapp_binary",
)
load(
"@io_bazel_rules_docker//container:container.bzl",
"container_image",
"container_bundle",
"container_push",
)

View file

@ -158,6 +158,7 @@ py_resources = rule(
def py_project(name=None,
main=None,
main_deps=None,
shebang=None,
lib_srcs=None,
lib_deps=None,
lib_data=None,
@ -238,6 +239,7 @@ def py_project(name=None,
visibility = [
"//visibility:public",
],
shebang = shebang,
)
for src in test_srcs: