-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathMODULE.bazel
More file actions
31 lines (26 loc) · 960 Bytes
/
MODULE.bazel
File metadata and controls
31 lines (26 loc) · 960 Bytes
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
"Bazel module definition, see https://bazel.build/external/overview#bzlmod"
module(
name = "container_structure_test",
# Replaced dynamically when published
version = "0.0.0",
compatibility_level = 1,
)
# To run jq
bazel_dep(name = "aspect_bazel_lib", version = "2.22.5")
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "platforms", version = "1.0.0")
ext = use_extension("//:repositories.bzl", "extension")
use_repo(
ext,
"structure_test_toolchains",
# For testing only
"structure_test_st_darwin_amd64",
"structure_test_st_darwin_arm64",
"structure_test_st_linux_amd64",
"structure_test_st_linux_arm64",
"structure_test_st_linux_s390x",
"structure_test_st_windows_amd64",
)
register_toolchains("@structure_test_toolchains//:all")
# 0.5.4 is the first version with bzlmod support
bazel_dep(name = "stardoc", version = "0.7.2", dev_dependency = True, repo_name = "io_bazel_stardoc")