Skip to content

Partial builds

Ruslan Lopatin edited this page Sep 20, 2020 · 1 revision

It is possible to build only a subset of packages.

The following options control the named batches to include into the build:

--only <BATCH>[,<BATCH>...] (-y)

Limits a set of named batches to select. Here <BATCH> is a batch name preceding the / sign.

--with <BATCH>[,<BATCH>...] (-w)

Selects named batches in addition to the ones specified by --only.

This option can be used to select additional named batches. Additional named batches have names prefixed by + (which is not required in option value). These batches are not automatically selected, unless explicitly requested by --with or --only option.

--except <BATCH>[,<BATCH>...] (-x)

Excludes the named batches from the build. This has higher priority than --only and --with option.

--all

Selects all named batches except additional ones.

This removes the effect of --only, --with, and --except options.