-
-
Notifications
You must be signed in to change notification settings - Fork 170
/
Copy pathBUILD.bazel
38 lines (32 loc) · 861 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This load statement must be in the docs/ package rather than anything users depend on
# so that the dependency on stardoc doesn't leak to them.
load("@aspect_bazel_lib//lib:docs.bzl", "stardoc_with_diff_test", "update_docs")
stardoc_with_diff_test(
name = "image",
bzl_library_target = "//oci:defs",
symbol_names = [
"oci_image_rule",
"oci_image",
],
)
stardoc_with_diff_test(
name = "load",
bzl_library_target = "//oci/private:load",
)
stardoc_with_diff_test(
name = "image_index",
bzl_library_target = "//oci/private:image_index",
)
stardoc_with_diff_test(
name = "push",
bzl_library_target = "//oci:defs",
symbol_names = [
"oci_push_rule",
"oci_push",
],
)
stardoc_with_diff_test(
name = "pull",
bzl_library_target = "//oci:pull",
)
update_docs(name = "update")