-
-
Notifications
You must be signed in to change notification settings - Fork 783
Expand file tree
/
Copy pathBUILD.packs
More file actions
25 lines (23 loc) · 636 Bytes
/
BUILD.packs
File metadata and controls
25 lines (23 loc) · 636 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
# These are packs that should be installed with the default ST2 install.
_DEFAULT_PACKS = (
"chatops",
"core",
"default",
"linux",
"packs",
)
# These are packs that should NOT be installed with the default ST2 install.
_EXTRA_PACKS = (
"debug",
"examples",
"hello_st2",
)
# :archive_for_npfm targets created by st2_pack_archive() macro (see pants-plugins/macros.py)
target(
name="default_packs",
dependencies=[f"//contrib/{pack}:archive_for_nfpm" for pack in _DEFAULT_PACKS],
)
target(
name="extra_packs",
dependencies=[f"//contrib/{pack}:archive_for_nfpm" for pack in _EXTRA_PACKS],
)