Fixe verify bazel

Remove rootfs and chroot in scripts
This commit is contained in:
Harry Zhang
2016-10-25 15:11:06 +08:00
parent 64c8d3ad3d
commit fad1990eaa
4 changed files with 16 additions and 34 deletions

View File

@@ -13,28 +13,8 @@ load(
go_library(
name = "go_default_library",
srcs = [
"bindata.go",
"main.go",
":bindata",
],
)
genrule(
name = "bindata",
srcs = [
"//examples:sources",
"//test/images:sources",
"//test/fixtures:sources",
"//test/e2e/testing-manifests:sources",
],
outs = ["bindata.go"],
cmd = """
$(location //vendor:github.com/jteeuwen/go-bindata/go-bindata) \
-nometadata -o "$(OUTS)" -pkg generated \
-prefix $$(pwd) \
-ignore .jpg -ignore .png -ignore .md \
$(SRCS)
""",
tools = [
"//vendor:github.com/jteeuwen/go-bindata/go-bindata",
],
tags = ["automanaged"],
)