forked from facebook/buck2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUCK
More file actions
26 lines (22 loc) · 716 Bytes
/
BUCK
File metadata and controls
26 lines (22 loc) · 716 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
load("@fbcode_macros//build_defs:native_rules.bzl", "alias")
load("@fbsource//tools/target_determinator/macros:ci.bzl", "ci")
load(":defs.bzl", "buck2_bundle")
oncall("build_infra")
alias(
name = "buck2",
actual = "//buck2/app/buck2:buck2-bin",
labels = [ci.aarch64(ci.skip_test())],
)
buck2_bundle(
name = "buck2_bundle",
buck2 = "//buck2:buck2",
buck2_client = "//buck2/app/buck2:buck2_client-bin",
buck2_health_check = "//buck2/buck2_health_check_cli:buck2_health_check_cli",
tpx = "//buck2/buck2_tpx_cli:buck2_tpx_cli",
visibility = ["PUBLIC"],
)
# For backcompat with bash aliases and so forth
alias(
name = "symlinked_buck2_and_tpx",
actual = ":buck2_bundle",
)