-
Notifications
You must be signed in to change notification settings - Fork 200
/
MODULE.bazel
30 lines (26 loc) · 959 Bytes
/
MODULE.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
"Bazel module definition, see https://bazel.build/external/overview#bzlmod"
module(
name = "container_structure_test",
compatibility_level = 1,
# Replaced dynamically when published
version = "0.0.0",
)
# To run jq
bazel_dep(name = "aspect_bazel_lib", version = "1.28.0")
bazel_dep(name = "bazel_skylib", version = "1.6.1")
bazel_dep(name = "platforms", version = "0.0.9")
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_arm64",
"structure_test_st_linux_s390x",
"structure_test_st_linux_amd64",
"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.5.4", repo_name = "io_bazel_stardoc", dev_dependency = True)