-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathBUILD
More file actions
55 lines (49 loc) · 1.63 KB
/
Copy pathBUILD
File metadata and controls
55 lines (49 loc) · 1.63 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
load("@aspect_rules_py//py:defs.bzl", "py_binary")
load("@docs_as_code_hub_env//:requirements.bzl", "all_requirements")
filegroup(
name = "sources",
srcs = glob(["**/*.py"]),
visibility = ["//visibility:public"],
)
py_binary(
name = "generate_sourcelinks",
srcs = ["generate_sourcelinks_cli.py"],
main = "generate_sourcelinks_cli.py",
visibility = ["//visibility:public"],
deps = [
"//src/extensions/score_source_code_linker",
] + all_requirements,
)
py_binary(
name = "merge_sourcelinks",
srcs = ["merge_sourcelinks.py"],
deps= [ "//src/extensions/score_source_code_linker"],
main = "merge_sourcelinks.py",
visibility = ["//visibility:public"],
)
py_binary(
name = "traceability_gate",
srcs = ["traceability_gate.py"],
main = "traceability_gate.py",
visibility = ["//visibility:public"],
deps = [],
)
py_binary(
name = "verification_schema_sync_check",
srcs = ["verification_schema_sync_check.py"],
main = "verification_schema_sync_check.py",
visibility = ["//visibility:public"],
deps = [],
)