Skip to content

Commit 918b0bf

Browse files
author
Paolo Tranquilli
committed
Bazel: add experimental to codeql_pack
1 parent e8677b4 commit 918b0bf

File tree

3 files changed

+70
-43
lines changed

3 files changed

+70
-43
lines changed

actions/BUILD.bazel

+5-16
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,8 @@ load("//misc/bazel:pkg.bzl", "codeql_pack")
22

33
package(default_visibility = ["//visibility:public"])
44

5-
[
6-
codeql_pack(
7-
name = "-".join(parts),
8-
srcs = [
9-
"//actions/extractor",
10-
],
11-
pack_prefix = "/".join(parts),
12-
)
13-
for parts in (
14-
["actions"],
15-
[
16-
"experimental",
17-
"actions",
18-
],
19-
)
20-
]
5+
codeql_pack(
6+
name = "actions",
7+
srcs = ["//actions/extractor"],
8+
experimental = True,
9+
)

misc/bazel/pkg.bzl

+57-10
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,8 @@ def codeql_pack(
429429
arch_overrides = None,
430430
pack_prefix = None,
431431
install_dest = "extractor-pack",
432+
installer_alias = "install",
433+
experimental = False,
432434
**kwargs):
433435
"""
434436
Define a codeql pack.
@@ -448,22 +450,64 @@ def codeql_pack(
448450
contain the `{CODEQL_PLATFORM}` marker.
449451
All files in the pack will be prefixed with `name`, unless `pack_prefix` is set, then is used instead.
450452
451-
This rule also provides a convenient installer target named `<name>-installer`, with a path governed by `install_dest`.
452-
This installer is used for installing this pack into the source-tree, relative to the directory where the rule is used.
453-
See `codeql_pack_install` for more details. The first `codeql_pack` defined in a bazel package also aliases this
454-
installer target with the `install` name as a shortcut.
453+
This rule also provides a convenient installer target named `<name>-installer`, with a path governed by `install_dest`,
454+
unless `install_dest == None`. This installer is used for installing this pack into the source-tree, relative to the
455+
directory where the rule is used. See `codeql_pack_install` for more details. If present, `installer_alias` is used
456+
to define a shorthand alias for `<name>-installer`. Be sure to change `installer_alias` or set it to `None` if a
457+
bazel package defines multiple `codeql_pack`s.
458+
459+
If `experimental = True`, a second `codeql_pack` named `<name>-experimental` is defined alongside the primary one with
460+
an `experimental` pack prefix and no installer, intended to be used when packaging the full distribution.
455461
456462
This function does not accept `visibility`, as packs are always public to make it easy to define pack groups.
457463
"""
458-
internal = _make_internal(name)
459-
zips = zips or {}
460464
if pack_prefix == None:
461465
pack_prefix = name
466+
_codeql_pack_impl(
467+
name,
468+
srcs,
469+
zips,
470+
arch_overrides,
471+
pack_prefix,
472+
install_dest,
473+
installer_alias,
474+
pkg_filegroup_kwargs = kwargs,
475+
)
476+
if experimental:
477+
_codeql_pack_impl(
478+
"%s-experimental" % name,
479+
srcs,
480+
zips,
481+
arch_overrides,
482+
pack_prefix = "experimental/%s" % pack_prefix,
483+
install_dest = None,
484+
installer_alias = None,
485+
pkg_filegroup_kwargs = kwargs,
486+
)
487+
488+
# TODO: remove this after internal repo update
489+
native.alias(
490+
name = "experimental-%s" % name,
491+
actual = "%s-experimental" % name,
492+
visibility = ["//visibility:public"],
493+
)
494+
495+
def _codeql_pack_impl(
496+
name,
497+
srcs,
498+
zips,
499+
arch_overrides,
500+
pack_prefix,
501+
install_dest,
502+
installer_alias,
503+
pkg_filegroup_kwargs):
504+
internal = _make_internal(name)
505+
zips = zips or {}
462506
pkg_filegroup(
463507
name = internal("all"),
464508
srcs = srcs,
465509
visibility = ["//visibility:private"],
466-
**kwargs
510+
**pkg_filegroup_kwargs
467511
)
468512
_codeql_pack_info(
469513
name = name,
@@ -474,9 +518,12 @@ def codeql_pack(
474518
# packs are always public, so that we can easily bundle them into groups
475519
visibility = ["//visibility:public"],
476520
)
477-
_codeql_pack_install(internal("installer"), [name], install_dest = install_dest, apply_pack_prefix = False)
478-
if not native.existing_rule("install"):
479-
native.alias(name = "install", actual = internal("installer"))
521+
if install_dest:
522+
_codeql_pack_install(internal("installer"), [name], install_dest = install_dest, apply_pack_prefix = False)
523+
524+
# TODO: remove deprecated `native.existing_rule(installer_alias)` after internal repo update
525+
if installer_alias and not native.existing_rule(installer_alias):
526+
native.alias(name = installer_alias, actual = internal("installer"))
480527

481528
strip_prefix = _strip_prefix
482529

rust/BUILD.bazel

+8-17
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,11 @@ codeql_pkg_files(
4646
],
4747
)
4848

49-
[
50-
codeql_pack(
51-
name = "-".join(parts),
52-
srcs = [
53-
":root-files",
54-
":tools",
55-
],
56-
pack_prefix = "/".join(parts),
57-
)
58-
for parts in (
59-
["rust"],
60-
[
61-
"experimental",
62-
"rust",
63-
],
64-
)
65-
]
49+
codeql_pack(
50+
name = "rust",
51+
srcs = [
52+
":root-files",
53+
":tools",
54+
],
55+
experimental = True,
56+
)

0 commit comments

Comments
 (0)