aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/release/BUILD
blob: b2fb039097911caa7b8b3276189e41963396efe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Scripts for building Bazel releases
package(default_visibility = ["//visibility:private"])

sh_library(
    name = "relnotes",
    srcs = ["relnotes.sh"],
)

sh_test(
    name = "relnotes_test",
    srcs = ["relnotes_test.sh"],
    data = [
        "testenv.sh",
        "//:git",
        "//src/test/shell:bashunit",
    ],
    shard_count = 2,
    tags = ["need_git"],
    deps = [
        ":relnotes",
    ],
)