forked from facebook/buck2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefs.bzl
More file actions
73 lines (61 loc) · 3.17 KB
/
defs.bzl
File metadata and controls
73 lines (61 loc) · 3.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is dual-licensed under either the MIT license found in the
# LICENSE-MIT file in the root directory of this source tree or the Apache
# License, Version 2.0 found in the LICENSE-APACHE file in the root directory
# of this source tree. You may select, at your option, one of the
# above-listed licenses.
load("@fbcode_macros//build_defs:platform_utils.bzl", "platform_utils")
load("@fbcode_macros//build_defs/lib:oss.bzl", "translate_target")
load("@prelude//decls:common.bzl", "buck")
load("@prelude//os_lookup:defs.bzl", "Os", "OsLookup")
def _buck2_bundle_impl(ctx: AnalysisContext) -> list[Provider]:
"""
Produce a directory layout that is similar to the one our release binary
uses, this allows setting a path for Tpx relative to BUCK2_BINARY_DIR.
"""
target_is_windows = ctx.attrs._target_os_type[OsLookup].os == Os("windows")
binary_extension = ".exe" if target_is_windows else ""
buck2_binary = "buck2" + binary_extension
buck2_tpx_binary = "buck2-tpx" + binary_extension
buck2_daemon_binary = "buck2-daemon" + binary_extension
buck2_health_check_binary = "buck2-health-check" + binary_extension
copied_dir = {}
materialisations = []
buck2 = ctx.attrs.buck2[DefaultInfo].default_outputs[0]
copied_dir[buck2_daemon_binary] = buck2
materialisations.extend(ctx.attrs.buck2[DefaultInfo].other_outputs)
buck2_client = ctx.attrs.buck2_client[DefaultInfo].default_outputs[0]
copied_dir[buck2_binary] = buck2_client
materialisations.extend(ctx.attrs.buck2_client[DefaultInfo].other_outputs)
if ctx.attrs.buck2_health_check:
buck2_health_check = ctx.attrs.buck2_health_check[DefaultInfo].default_outputs[0]
copied_dir[buck2_health_check_binary] = buck2_health_check
materialisations.extend(ctx.attrs.buck2_health_check[DefaultInfo].other_outputs)
if ctx.attrs.tpx:
tpx = ctx.attrs.tpx[DefaultInfo].default_outputs[0]
copied_dir[buck2_tpx_binary] = ctx.actions.symlink_file(buck2_tpx_binary, tpx)
materialisations.extend(ctx.attrs.tpx[DefaultInfo].other_outputs)
out = ctx.actions.copied_dir("out", copied_dir)
return [DefaultInfo(out, other_outputs = materialisations), RunInfo(cmd_args(out.project("buck2" + binary_extension), hidden = materialisations))]
_buck2_bundle = rule(
impl = _buck2_bundle_impl,
attrs = {
"buck2": attrs.dep(),
"buck2_client": attrs.dep(),
"buck2_health_check": attrs.option(attrs.dep(), default = None),
"labels": attrs.list(attrs.string(), default = []),
"tpx": attrs.option(attrs.dep(), default = None),
"_target_os_type": buck.target_os_type_arg(),
},
)
def buck2_bundle(buck2, buck2_client, buck2_health_check, tpx, **kwargs):
cxx_platform = platform_utils.get_cxx_platform_for_base_path(native.package_name())
_buck2_bundle(
buck2 = translate_target(buck2),
buck2_client = translate_target(buck2_client),
# @oss-disable[end= ]: buck2_health_check = buck2_health_check,
# @oss-disable[end= ]: tpx = tpx,
default_target_platform = cxx_platform.target_platform,
**kwargs
)