-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathmake_version_test_file.bzl
40 lines (36 loc) · 1.26 KB
/
make_version_test_file.bzl
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
39
40
load("@build_bazel_rules_nodejs//:providers.bzl", "run_node")
def _make_version_test_file_impl(ctx):
output_file = ctx.actions.declare_file(ctx.attr.name + ".ts")
run_node(
ctx,
executable = "make_version_test_file_bin",
inputs = ctx.files.package_json,
outputs = [output_file],
arguments = [
ctx.files.package_json[0].path,
ctx.attr.version_name,
output_file.path,
],
)
return [DefaultInfo(files = depset([output_file]))]
make_version_test_file = rule(
implementation = _make_version_test_file_impl,
attrs = {
"make_version_test_file_bin": attr.label(
executable = True,
cfg = "exec",
default = Label("@//tools:make_version_test_file_bin"),
doc = "The script that generates the version test",
),
"package_json": attr.label(
mandatory = True,
allow_single_file = [".json"],
doc = "The package.json containing the version to use for the test",
),
"version_name": attr.string(
mandatory = True,
doc = "The name of the imported version variable to check",
),
},
doc = """Generate the version test file for tfjs-core""",
)