summaryrefslogtreecommitdiff
path: root/src/buildstream/plugins/elements/filter.yaml
blob: 12a82a9cb3ad75cf0ba92d200bcda1528eebda72 (plain)
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

# Filter element configuration
config:

  # A list of domains to include in each artifact, as
  # they were defined as public data in the parent
  # element's 'split-rules'.
  #
  # If a domain is specified that does not exist, the
  # filter element will fail to build.
  #
  # The default empty list indicates that all domains
  # of the parent's artifact should be included.
  #
  include: []

  # A list of domains to exclude from each artifact, as
  # they were defined in the parent element's 'split-rules'.
  #
  # In the case that a file is spoken for by a domain
  # in the 'include' list and another in the 'exclude'
  # list, then the file will be excluded.
  exclude: []

  # Whether to include orphan files which are not
  # included by any of the 'split-rules' present in
  # the parent element.
  #
  include-orphans: False

  # Whether to pass the 'integration-commands' of the
  # parent element through the filter.
  #
  pass-integration: False