// file : doc/manual.cli // license : MIT; see accompanying LICENSE file "\name=build2-build-bot-manual" "\subject=build bot" "\title=Build Bot" // NOTES // // - Maximum
 line is 70 characters.
//

"
\h0#preface|Preface|

This document describes \c{bbot}, the \c{build2} build bot. For the build bot
command line interface refer to the \l{bbot-agent(1)} and \l{bbot-worker(1)}
man pages.

\h1#intro|Introduction|

\h1#arch|Architecture|

The \c{bbot} architecture includes several layers for security and
manageability. At the top we have a \c{bbot} running in the \i{controller}
mode. The controller monitors various \i{build sources} for \i{build
tasks}. For example, a controller may poll a \c{brep} instances for any new
packages to built as well as monitor a \cb{git} repository for any new commits
to test. There can be several layers of controllers with \c{brep} being just a
special kind. A machine running a \c{bbot} instance in the controller mode is
called a \i{controller host}.

Below the controllers we have a \c{bbot} running in the \i{agent} mode
normally on Build OS. The agent polls its controllers for \i{build tasks} to
perform. A machine running a \c{bbot} instance in the agent mode is called a
\i{build host}.

The actual building is performed in the virtual machines and/or containers
that are executed on the build host. Inside virtual machines/containers,
\c{bbot} is running in the \i{worker mode} and receives build tasks from its
agent. Virtual machines and containers running a \c{bbot} instance in the
worker mode are collectively called \i{build machines}.

In addition to a build machine, a build task may also require one or more
\i{auxiliary machines} which provide additional components that are required
for building or testing a package and that are impossible or impractical to
provide as part of the build machine itself.

Let's now examine the workflow in the other direction, that is, from a worker
to a controller. Once a build machine (plus auxiliary machines, if any) are
booted (by the agent), the worker inside the build machine connects to the
TFTP server running on the build host and downloads the \i{build task
manifest}. It then proceeds to perform the build task and uploads the \i{build
artifacts archive}, if any, followed by the \i{build result manifest} (which
includes build logs) to the TFTP server.

Unlike build machines, auxiliary machines are not expected to run \c{bbot}.
Instead, on boot, they are expected to upload to the TFTP server a list of
environment variables to propagate to the build machine (see the
\c{auxiliary-environment} task manifest value as well as \l{#arch-worker
Worker Logic} for details).

Once an agent receives a build task for a specific build machine, it goes
through the following steps. First, it creates a directory on its TFTP server
with the \i{machine name} as its name and places the build task manifest
inside. Next, it makes a throw-away snapshot of the build machine and boots
it. After booting the build machine, the agent monitors the machine directory
on its TFTP server for the build result manifest (uploaded by the worker once
the build has completed). Once the result manifest is obtained, the agent
shuts down the build machine and discards its snapshot.

To obtains a build task the agent polls via HTTP/HTTPS one or more
controllers. Before each poll request the agent enumerates the available build
machines and sends this information as part of the request. The controller
responds with a build task manifest that identifies a specific build machine
to use.

In the task request the agent specifies if only non-interactive, interactive,
or both build kinds are supported. If interactive builds are supported, it
additionally provides the login information for interactive build sessions. If
the controller responds with an interactive build task, then its manifest
specifies the breakpoint the worker must stop the task execution at and prompt
the user whether to continue or abort the execution. The user can log into the
build machine, potentially perform some troubleshooting, and, when done,
either answer the prompt or just shutdown the machine.

If the controller has higher-level controllers (for example, \c{brep}), then
it aggregates the available build machines from its agents and polls these
controllers (just as an agent would), forwarding build tasks to suitable
agents. In this case we say that the \i{controller act as an agent}. The
controller may also be configured to monitor build sources, such as SCM
repositories, directly in which case it generates build tasks itself.

In this architecture the build results and optional build artifacts are
propagated up the chain: from a worker, to its agent, to its controller, and
so on. A controller that is the final destination of a build result uses email
to notify interested parties of the outcome. For example, \c{brep} would send
a notification to the package owner if the build failed. Similarly, a \c{bbot}
controller that monitors a \cb{git} repository would send an email to a
committer if their commit caused a build failure. The email would include a
link (normally HTTP/HTTPS) to the build logs hosted by the controller. The
build artifacts, such as generated binary distribution packages, are normally
made available for the interested parties to download. See \l{brep#upload
Build Artifacts Upload} for details on the \c{brep} controller's
implementation of the build artifacts upload handling.

\h#arch-machine-config|Configurations|

The \c{bbot} architecture distinguishes between a \i{build machine
configuration}, \i{build target configuration}, and a \i{build package
configuration}. The machine configuration captures the operating system,
installed compiler toolchain, and so on. The same build machine may be used to
\"generate\" multiple \i{build target configurations}. For example, the same
machine can normally be used to produce debug/optimized builds.

\h2#arch-machine-config-build-machine|Build Machine Configuration|

The machine configuration is \i{approximately} encoded in its \i{machine
name}. The machine name is a list of components separated with \c{-}.
Components cannot be empty and must contain only alpha-numeric characters,
underscores, dots, and pluses with the whole id being a portably-valid path
component.

The encoding is approximate in a sense that it captures only what's important
to distinguish in a particular \c{bbot} deployment.

The first three components normally identify the architecture, operating
system, and optional variant. They have the following recommended form:

\
-[_][_][-]
\

For example:

\
x86_64-windows
x86_64-windows_10
x86_64-windows_10.1607
x86_64-windows_10-devmode
x86_64-bsd_freebsd_10
x86_64-linux_ubuntu_16.04
x86_64-linux_rhel_9.2-bindist
aarch64-macos_10.12
\

The last component normally identifies the installed compiler toolchain and
has the following recommended form:

\
[_][_][_]
\

For example:

\
gcc
gcc_6
gcc_6.3
gcc_6.3_mingw_w64
clang_3.9
clang_3.9_libc++
msvc_14
msvc_14.3
clang_15.0_msvc_msvc_17.6
clang_16.0_llvm_msvc_17.6
\

Some examples of complete machine names:

\
x86_64-windows_10-msvc_14.3
x86_64-macos_10.12-clang_10.0
aarch64-linux_ubuntu_16.04-gcc_6.3
aarch64-linux_rhel_9.2-bindist-gcc_11
\

\h2#arch-machine-config-build-target-config|Build Target Configuration|

Similarly, the build target configuration is encoded in a \i{configuration
name} using the same overall format. As described in \l{#arch-controller
Controller Logic}, target configurations are generated from machine
configurations. As a result, it usually makes sense to have the first
component identify the operating systems and the second component \- the
compiler toolchain with the rest identifying a particular target configuration
variant, for example, optimized, sanitized, etc:

\
[_][_]-[-]
\

For example:

\
windows_10-msvc_17.6
windows_10-msvc_17.6-O2
windows_10-msvc_17.6-static_O2
windows_10-msvc_17.6-relocatable
windows_10-clang_16.0_llvm_msvc_17.6_lld
linux_debian_12-clang_16_libc++-static_O3
\

Note that there is no \c{} component in a build target configuration:
this information is best conveyed as part of \c{} as described in
\l{#arch-controller Controller Logic}.

\h2#arch-machine-config-build-package-config|Build Package Configuration|

A package can be built in multiple package configurations per target
configuration. A build package configuration normally specifies the options
and/or the package configuration variables that need to be used for the
build. It may also include the information regarding the dependency packages
which need to additionally be configured. The build package configurations
originate from the package manifest \c{*-build-config}, \c{*-builds},
\c{*-build-include}, and \c{*-build-exclude} values. See
\l{bpkg#manifest-package Package Manifest} for more information on these
values.


\h2#arch-machine-config-auxiliary|Auxiliary Machines and Configurations|

Besides the build machine and the build configuration that is derived from it,
a package build may also involve one or more \i{auxiliary machines} and the
corresponding \i{auxiliary configurations}.

An auxiliary machine provides additional components that are required for
building or testing a package and that are impossible or impractical to
provide as part of the build machine itself. For example, a package may need
access to a suitably configured database, such as PostgreSQL, in order to run
its tests.

The auxiliary machine name follows the same overall format as the build
machine name except that the last component captures the information about the
additional component in question rather than the compiler toolchain. For
example:

\
x86_64-linux_debian_12-postgresql_16
aarch64-linux_debian_12-mysql_8
\

The auxiliary configuration name is automatically derived from the machine
name by removing the \c{} component. For example:

\
linux_debian_12-postgresql_16
linux_debian_12-mysql_8
\

\N|Note that there is no generation of multiple auxiliary configurations from
the same auxiliary machine since that would require some communication of the
desired configuration variant to the machine.|


\h#arch-machine-header|Machine Header Manifest|

@@ TODO: need ref to general manifest overview in bpkg, or, better yet,
move it to libbutl and ref to that from both places.

The build machine header manifest contains basic information about a build
machine on the build host. A list of machine header manifests is sent by
\c{bbot} agents to controllers. The manifest synopsis is presented next
followed by the detailed description of each value in subsequent sections.

\
id: 
name: 
summary: 
[role]: build|auxiliary
[ram-minimum]: 
[ram-maximum]: 
\

For example:

\
id: x86_64-windows_10-msvc_14-1.3
name: x86_64-windows_10-msvc_14
summary: Windows 10 build 1607 with VC 14 update 3
\

\
id: aarch64-linux_debian_12-postgresql_16-1.0
name: aarch64-linux_debian_12-postgresql_16
summary: Debian 12 with PostgreSQL 16 test user/database
role: auxiliary
ram-minimum: 2097152
ram-maximum: 4194304
\

\h2#arch-machine-header-id|\c{id}|

\
id: 
\

The unique machine version/revision/build identifier. For virtual machines
this can be the disk image checksum. For a container this can be UUID that is
re-generated every time a container filesystem is altered.

Note that we assume that a different machine identifier is assigned on any
change that may affect the build result.


\h2#arch-machine-header-name|\c{name}|

\
name: 
\

The machine name.


\h2#arch-machine-header-summary|\c{summary}|

\
summary: 
\

The one-line description of the machine.


\h2#arch-machine-header-role|\c{role}|

\
[role]: build|auxiliary
\

The machine role. If unspecified, then \c{build} is assumed.


\h2#arch-machine-header-ram|\c{ram-minimum}, \c{ram-maximum}|

\
[ram-minimum]: 
[ram-maximum]: 
\

The minimum and the maximum amount of RAM in KiB that the machine requires.
The maximum amount is interpreted as the amount beyond which there will be no
benefit. If unspecified, then it is assumed the machine will run with any
minimum amount a deployment will provide and will always benefit from more
RAM, respectively. Neither value should be \c{0}.


\h#arch-machine|Machine Manifest|

The build machine manifest contains the complete description of a build
machine on the build host (see the Build OS documentation for their origin and
location). The machine manifest starts with the machine header manifest with
all the header values appearing before any non-header values. The non-header
part of manifest synopsis is presented next followed by the detailed
description of each value in subsequent sections.

\
type: kvm|nspawn
[mac]: 
[options]: 
[changes]: 
\


\h2#arch-machine-type|\c{type}|

\
type: kvm|nspawn
\

The machine type. Valid values are \c{kvm} (QEMU/KVM virtual machine) and
\c{nspawn} (\c{systemd-nspawn} container).


\h2#arch-machine-mac|\c{mac}|

\
[mac]: 
\

The fixed MAC address for the machine. Must be in the hexadecimal,
comma-separated format. For example:

\
mac: de:ad:be:ef:de:ad
\

If it is not specified, then a random address is generated on the first
machine bootstrap which is then reused for each build/re-bootstrap. Note that
if you specify a fixed address, then the machine can only be used by a single
\c{bbot} agent.


\h2#arch-machine-options|\c{options}|

\
[options]: 
\

The list of machine options. The exact semantics is machine type-dependent
(see below). A single level of quotes (either single or double) is removed in
each option before being passed on. Options can be separated with spaces or
newlines.

For \c{kvm} machines, if this value is present, then it replaces the default
network and disk configuration when starting the QEMU/KVM hypervisor. The
options are pre-processed by replacing the question mark in \c{ifname=?} and
\c{mac=?} strings with the network interface and MAC address, respectively.


\h2#arch-machine-changes|\c{changes}|

\
[changes]: 
\

The description of machine changes in this version.

Multiple \c{changes} values can be present which are all concatenated in the
order specified, that is, the first value is considered to be the most recent.
For example:

\
changes: 1.1: initial version
changes: 1.2: increased disk size to 30GB
\

Or:

\
changes:
\\
1.1
  - initial version

1.2
  - increased disk size to 30GB
  - upgraded bootstrap baseutils
\\
\


\h#arch-task|Task Manifest|

The task manifest describes a build task. It consists of two groups of values.
The first group defines the package to build. The second group defines the
build configuration to use for building the package. The manifest synopsis is
presented next followed by the detailed description of each value in
subsequent sections.

\
name: 
version: 
#location: 
repository-url: 
[repository-type]: pkg|git|dir
[trust]: 
[requires]: 
[tests]: 
[examples]: 
[benchmarks]: 
[dependency-checksum]: 

machine: 
[auxiliary-machine]: 
[auxiliary-machine-]: 
target: 
[environment]: 
[auxiliary-environment]: 
[target-config]: 
[package-config]: 
[host]: true|false
[warning-regex]: 
[interactive]: 
[worker-checksum]: 
\


\h2#arch-task-name|\c{name}|

\
name: 
\

The package name to build.


\h2#arch-task-version|\c{version}|

\
version: 
\

The package version to build.


\h2#arch-task-repository-url|\c{repository-url}|

\
repository-url: 
\

The URL of the repository that contains the package and its dependencies.


\h2#arch-task-repository-type|\c{repository-type}|

\
[repository-type]: pkg|git|dir
\

The repository type (see \c{repository-url} for details). Alternatively, the
repository type can be specified as part of the URL scheme. See
\l{bpkg-repository-types(1)} for details.


\h2#arch-task-trust|\c{trust}|

\
[trust]: 
\

The SHA256 repository certificate fingerprint to trust (see the \c{bpkg}
\c{--trust} option for details). This value may be specified multiple times to
establish the authenticity of multiple certificates. If the special \c{yes}
value is specified, then all repositories will be trusted without
authentication (see the \c{bpkg} \c{--trust-yes} option).

Note that while the controller may return a task with \c{trust} values,
whether they will be used is up to the agent's configuration. For example,
some agents may only trust their internally-specified fingerprints to prevent
the \"man in the middle\" attacks.


\h2#arch-task-requires-tests-examples-benchmarks|\c{requires, tests, examples, benchmarks}|

The primary package manifest values that need to be known by the \c{bbot}
worker before it retrieves the primary package manifest. See
\l{bpkg#manifest-package Package Manifest} for more information on these
values.

The controller copies these values from the primary package manifest, except
those \c{tests}, \c{examples}, and \c{benchmarks} values which should be
excluded from building due to their \c{builds}, \c{build-include}, and
\c{build-exclude} manifest values.


\h2#arch-task-dependency-checksum|\c{dependency-checksum}|

\
[dependency-checksum]: 
\

The package dependency checksum received as a part of the previous build task
result (see \l{#arch-result Result Manifest}).


\h2#arch-task-machine|\c{machine}|

\
machine: 
\

The name of the build machine to use.


\h2#arch-task-auxiliary-machine|\c{auxiliary-machine}|

\
[auxiliary-machine]: 
[auxiliary-machine-]: 
\

The names of the auxiliary machines to use. These values correspond to the
\c{build-auxiliary} and \c{build-auxiliary-} values in the package
manifest. While there each value specifies an auxiliary configuration pattern,
here it specifies the concrete auxiliary machine name that was picked by the
controller from the list of available auxiliary machines (sent as part of the
task request) that match this pattern.


\h2#arch-task-target|\c{target}|

\
target: 
\

The target to build for.

Compared to the autotools terminology, the \c{machine} value corresponds to
\c{--build} (the machine we are building on) and \c{target} \- to \c{--host}
(the machine we are building for). While we use essentially the same \i{target
triplet} format as autotools for \c{target}, it is not flexible enough for
\c{machine}.


\h2#arch-task-environment|\c{environment}|

\
[environment]: 
\

The name of the build environment to use. See \l{#arch-worker Worker Logic}
for details.


\h2#arch-task-auxiliary-environment|\c{auxiliary-environment}|

\
[auxiliary-environment]: 
\

The environment variables describing the auxiliary machines. If any
\c{auxiliary-machine*} values are specified, then after starting such
machines, the agent prepares a combined list of environment variables that
were uploaded by such machines and passes it in this value to the worker.

The format of this value is a list of environment variable assignments
one per line, in the form:

\
=
\

Whitespaces before \c{}, around \c{=}, and after \c{} as well as
blank lines and lines that start with \c{#} are ignored. The \c{} part
must only contain capital alphabetic, numeric, and \c{_} characters. The
\c{} part as a whole can be single ('\ ') or double (\"\ \")
quoted. For example:

\
DATABASE_HOST=192.168.0.1
DATABASE_PORT=1245
DATABASE_USER='John \"Johnny\" Doe'
DATABASE_NAME=\" test database \"
\

If the corresponding machine is specified as \c{auxiliary-machine-},
then its environment variables are prefixed with capitalized \c{_}. For
example:

\
auxiliary-machine-pgsql: x86_64-linux_debian_12-postgresql_16
auxiliary-environment:
\\
PGSQL_DATABASE_HOST=192.168.0.1
PGSQL_DATABASE_PORT=1245
...
\\
\


\h2#arch-task-target-config|\c{target-config}|

\
[target-config]: 
\

The additional target configuration options and variables. A single level of
quotes (either single or double) is removed in each value before being passed
to \c{bpkg}. For example, the following value:

\
target-config: config.cc.coptions=\"-O3 -stdlib='libc++'\"
\

Will be passed to \c{bpkg} as the following (single) argument:

\
config.cc.coptions=-O3 -stdlib='libc++'
\

Values can be separated with spaces or newlines. See \l{#arch-controller
Controller Logic} for details.


\h2#arch-task-package-config|\c{package-config}|

\
[package-config]: 
\

The primary package manifest \c{*-build-config} value for the build
configuration the build task is issued for. See \l{bpkg#manifest-package
Package Manifest} for more information on this value. A single level of quotes
(either single or double) is removed in each value before being passed to
\c{bpkg}. For example, the following value:

\
package-config: \"?libcurl ~7.76.0\"
\

Will be passed to \c{bpkg} as the following (single) argument:

\
?libcurl ~7.76.0
\

Values can be separated with spaces or newlines. See \l{#arch-controller
Controller Logic} for details.


\h2#arch-task-host|\c{host}|

\
[host]: true|false
\

If \c{true}, then the build target configuration is self-hosted. If not
specified, \c{false} is assumed. See \l{#arch-controller Controller Logic} for
details.


\h2#arch-task-warning-regex|\c{warning-regex}|

\
[warning-regex]: 
\

Additional regular expressions that should be used to detect warnings in the
build logs. Note that only the first 512 bytes of each log line is considered.

A single level of quotes (either single or double) is removed in each
expression before being used for search. For example, the following value:

\
warning-regex: \"warning C4\d{3}: \"
\

Will be treated as the following (single) regular expression (with a trailing
space):

\
warning C4\d{3}:
\

Expressions can be separated with spaces or newlines. They will be added to
the following default list of regular expressions that detect the \c{build2}
toolchain warnings:

\
^warning:
^.+: warning:
\

Note that this built-in list also covers GCC and Clang warnings (for the
English locale).


\h2#arch-task-interactive|\c{interactive}|

\
[interactive]: 
\

The task execution step to stop at. Can only be present if the agent has
specified \c{interactive-mode} with either the \c{true} or \c{both} value in
the task request.

The breakpoint can either be a primary step id of the worker script or the
special \c{error} or \c{warning} value. There is also the special \c{none}
value which never interrupts the task execution. See \l{#arch-worker Worker
Logic} for details.


\h2#arch-task-worker-checksum|\c{worker-checksum}|

\
[worker-checksum]: 
\

The worker checksum received as a part of the previous build task result (see
\l{#arch-result Result Manifest}).


\h#arch-result|Result Manifest|

The result manifest describes a build result. The manifest synopsis is
presented next followed by the detailed description of each value in
subsequent sections.

\
name: 
version: 

status:                  
[configure-status]:      
[update-status]:         
[test-status]:           
[install-status]:        
[bindist-status]:        
[sys-install-status]:    
[test-installed-status]: 
[sys-uninstall-status]:  
[uninstall-status]:      
[upload-status]:         

[configure-log]:      
[update-log]:         
[test-log]:           
[install-log]:        
[bindist-log]:        
[sys-install-log]:    
[test-installed-log]: 
[sys-uninstall-log]:  
[uninstall-log]:      
[upload-log]:         

[worker-checksum]:     
[dependency-checksum]: 
\


\h2#arch-result-name|\c{name}|

\
name: 
\

The package name from the task manifest.


\h2#arch-result-version|\c{version}|

\
version: 
\

The package version from the task manifest.


\h2#arch-result-status|\c{status}|

\
status: 
\

The overall (cumulative) build result status. Valid values are:

\
skip       # Package update and subsequent operations were skipped.
success    # All operations completed successfully.
warning    # One or more operations completed with warnings.
error      # One or more operations completed with errors.
abort      # One or more operations were aborted.
abnormal   # One or more operations terminated abnormally.
interrupt  # Task execution has been interrupted.
\

The \c{abort} status indicates that the operation has been aborted by
\c{bbot}, for example, because it was consuming too many resources and/or was
taking too long. Note that a task can be aborted both by the \c{bbot} worker
as well as the agent. In the later case the whole machine is shut down and no
operation-specific status or logs will be included (@@ Maybe we should just
include 'log:' with commands that start VM, for completeness?).

The \c{abnormal} status indicates that the operation has terminated
abnormally, for example, due to the package manager or build system crash.

The \c{interrupt} status indicates that the task execution has been
interrupted, for example, to reassign resources to a higher priority task.

Note that the overall \c{status} value should appear before any per-operation
\c{*-status} values.

The \c{skip} status indicates that the received from the controller build task
checksums have not changed and the task execution has therefore been skipped
under the assumption that it would have produced the same result. See
\c{agent-checksum}, \c{worker-checksum}, and \c{dependency-checksum} for
details.


\h2#arch-result-x-status|\c{*-status}|

\
[*-status]: 
\

The per-operation result status. Note that the \c{*-status} values should
appear in the same order as the corresponding operations were performed
and for each \c{*-status} there should be the corresponding \c{*-log}
value. Currently supported operation names:

\
configure
update
test
install
bindist
sys-install
test-installed
sys-uninstall
uninstall
upload
\


\h2#arch-result-x-log|\c{*-log}|

\
[*-log]: 
\

The per-operation result log. Note that the \c{*-log} values should appear
last and in the same order as the corresponding \c{*-status} values. For
the list of supported operation names refer to the \c{*-status} value
description.


\h2#arch-result-dependency-checksum|\c{dependency-checksum}|

\
[dependency-checksum]: 
\

The package dependency checksum obtained as a byproduct of the package
configuration operation. See \l{bpkg-pkg-build(1)} command's
\c{--rebuild-checksum} option for details.


\h2#arch-result-worker-checksum|\c{worker-checksum}|

\
[worker-checksum]: 
\

The version of the worker logic used to perform the package build task.


\h#arch-task-req|Task Request Manifest|

An agent (or controller acting as an agent) sends a task request to its
controller via HTTP/HTTPS POST method (@@ URL/API endpoint). The task request
starts with the task request manifest followed by a list of machine header
manifests. The task request manifest synopsis is presented next followed by
the detailed description of each value in subsequent sections.

\N|The controller is expected to pick each offered machine header manifest
only once. If an agent is capable of running multiple instances of the same
machine, then it must send the matching number of machine header manifests for
such a machine.|

\
agent: 
toolchain-name: 
toolchain-version: 
[interactive-mode]: false|true|both
[interactive-login]: 
[fingerprint]: 
[auxiliary-ram]: 
\


\h2#arch-task-req-agent|\c{agent}|

\
agent: 
\

The name of the agent host (\c{hostname}). The name should be unique in a
particular \c{bbot} deployment.


\h2#arch-task-req-toolchain-name|\c{toolchain-name}|

\
toolchain-name: 
\

The \c{build2} toolchain name being used by the agent.


\h2#arch-task-req-toolchain-version|\c{toolchain-version}|

\
toolchain-version: 
\

The \c{build2} toolchain version being used by the agent.


\h2#arch-task-req-interactive-mode|\c{interactive-mode}|

\
[interactive-mode]: false|true|both
\

The agent's capability to perform build tasks only non-interactively
(\c{false}), only interactively (\c{true}), or both (\c{both}).

If it is not specified, then the \c{false} value is assumed.


\h2#arch-task-req-interactive-login|\c{interactive-login}|

\
[interactive-login]: 
\

The login information for the interactive build session. Must be present only
if \c{interactive-mode} is specified with the \c{true} or \c{both} value.


\h2#arch-task-req-fingerprint|\c{fingerprint}|

\
[fingerprint]: 
\

The SHA256 fingerprint of the agent's public key. An agent may be configured
not to use the public key-based authentication in which case it does not
include this value. However, the controller may be configured to require the
authentication in which case it should respond with the 401 (unauthorized)
HTTP status code.


\h2#arch-task-req-auxiliary-ram|\c{auxiliary-ram}|

\
[auxiliary-ram]: 
\

The amount of RAM in KiB that is available for running auxiliary machines. If
unspecified, then assume there is no hard limit (that is, the agent can
allocate up to the host's available RAM minus the amount required to run the
build machine).


\h#arch-task-res|Task Response Manifest|

A controller sends the task response manifest in response to the task request
initiated by an agent. The response is delivered as a result of the POST
method. The task response starts with the task response manifest optionally
followed by the task manifest. The task response manifest synopsis is
presented next followed by the detailed description of each value in
subsequent sections.

\
session: 
[challenge]: 
[result-url]: 
[*-upload-url]: 
[agent-checksum]: 
\


\h2#arch-task-res-session|\c{session}|

\
session: 
\

The identifier assigned to this session by the controller. An empty value
indicates that the controller has no tasks at this time in which case all the
following values as well as the task manifest are absent.


\h2#arch-task-res-challenge|\c{challenge}|

\
[challenge]: 
\

The random, 64 characters long string (nonce) used to challenge the agent's
private key. If present, then the agent must sign this string and include the
signature in the result request (see below).

The signature should be calculated by encrypting the string with the agent's
private key and then \c{base64}-encoding the result.


\h2#arch-task-res-result-url|\c{result-url}|

\
[result-url]: 
\

The URL to POST (upload) the result request to.


\h2#arch-task-res-upload-url|\c{*-upload-url}|

\
[*-upload-url]: 
\

The URLs to upload the build artifacts to, if any, via the HTTP \c{POST}
method using the \c{multipart/form-data} content type (see \l{brep#upload
Build Artifacts Upload} for details on the upload protocol). The substring
matched by \c{*} in \c{*-upload-url} denotes the upload type.


\h2#arch-task-res-agent-checksum|\c{agent-checksum}|

\
[agent-checksum]: 
\

The agent checksum received as a part of the previous build task result
request (see \l{#arch-result-req Result Request Manifest}).


\h#arch-result-req|Result Request Manifest|

On completion of a task an agent (or controller acting as an agent) sends the
result (upload) request to the controller via the POST method using the URL
returned in the task response (see above). The result request starts with the
result request manifest followed by the result manifest. Note that there is no
result response and only a successful but empty POST result is returned. The
result request manifest synopsis is presented next followed by the detailed
description of each value in subsequent sections.

\
session: 
[challenge]: 
[agent-checksum]: 
\


\h2#arch-result-req-session|\c{session}|

\
session: 
\

The session id as returned by the controller in the task response.


\h2#arch-result-req-challenge|\c{challenge}|

\
[challenge]: 
\

The answer to the private key challenge as posed by the controller in the task
response. It must be present only if the \c{challenge} value was present in
the task response.


\h2#arch-result-req-agent-checksum|\c{agent-checksum}|

\
[agent-checksum]: 
\

The version of the agent logic used to perform the package build task.


\h#arch-worker|Worker Logic|

The \c{bbot} worker builds each package in a \i{build environment} that is
established for a particular build target. The environment has three
components: the execution environment (environment variables, etc), build
system modules, as well as configuration options and variables.

Setting up of the execution environment is performed by an executable (script,
batch file, etc). Specifically, upon receiving a build task, if it specifies
the environment name then the worker looks for the environment setup
executable with this name in a specific directory and for the executable
called \c{default} otherwise. Not being able to locate the environment
executable is an error.

In addition to the environment executable, if the task requires any auxiliary
machines, then the \c{auxiliary-environment} value from the task manifest is
incorporated into the execution environment.

Specifically, once the environment setup executable is determined, the worker
re-executes itself in the auxiliary environment and as that executable passing
to it as command line arguments the target name, the path to the \c{bbot}
worker to be executed once the environment is setup, and any additional
options that need to be propagated to the re-executed worker. The environment
setup executable is executed in the build directory as its current working
directory. The build directory contains the build task \c{task.manifest} file.

The environment setup executable sets up the necessary execution environment
for example by adjusting \c{PATH} or running a suitable \c{vcvars} batch file.
It then re-executes itself as the \c{bbot} worker passing to it as command
line arguments (in addition to worker options) the list of build system
modules (\c{}) and the list of configuration options and variables
(\c{}). The environment setup executable must execute the
\c{bbot} worker in the build directory as the current working directory.

The re-executed \c{bbot} worker then proceeds to test the package from the
repository by executing the following commands, collectively called a
\i{worker script}. Each command has a unique \i{step id} that can be used as a
breakpoint and normally as a prefix in the \c{},
\c{}, and \c{} values as discussed in
\l{#arch-controller Controller Logic} as well as in the \c{}
values (see below). The \c{<>}-values are from the task manifest and the
environment though some are assigned by the worker during the script execution
(configuration directories, UUIDs, etc). In particular, the
\c{} (prefixed global options and variables),
\c{} (unprefixed options), \c{} (unprefixed
variables), \c{}, \c{}, and
\c{} values result from parsing the
\l{#arch-task-package-config \c{package-config}} task manifest value.

Some prefix step ids have fallback step ids which are used in the absence of
the primary step id values. If the prefix step id differs from the breakpoint
step id and/or has the fallback step ids, then they are listed in parenthesis:
the prefix id before the colon and the fallback ids after it.

Some commands have no target configuration or environment options or
variables. Such commands have only breakpoint step ids associated, which are
listed in square brackets.

Note that the worker script varies for different primary package types. The
\c{bbot} worker classifies the primary package based on the configuration type
in which it is built: \c{module} (build system module packages), \c{host}
(packages such as source code generators, marked with the \c{requires: host}
manifest value; see \l{bpkg#manifest-package Package Manifest} for details),
and \c{target} (all other packages).

Note also that the \c{*.configure.build} step configures potentially multiple
packages (primary package, tests, etc) in potentially multiple configurations
by always using the \c{bpkg.global.configure.build} prefix step id for global
(as opposed to package-specific) \l{bpkg-pkg-build(1)} options. The
\c{bpkg.global.configure.build} prefix id has no fallback ids.

Note finally that if no configuration variables are specified in the main
package configuration, then the worker adds the
\c{config..develop=false} configuration variable for the main package at
the \c{bpkg.configure.build} step to trigger its package skeleton creation and
loading. It also adds this variable for external test packages at this step
and for the same purpose. This makes sure that these packages can be used as
dependencies of dependents with configuration clauses. To keep the below
listings concise, these variables are not shown.

Worker script for \c{target} packages:

\
# bpkg.create (bpkg.target.create : b.create, bpkg.create)
#
bpkg -V create  \\
       

# bpkg.configure.add
#
bpkg -v add 

# bpkg.configure.fetch
#
bpkg -v fetch --trust 

# bpkg.configure.build (
#   bpkg.global.configure.build,
#   (bpkg.target.configure.build : b.configure, bpkg.configure.build))
#
bpkg -v build --configure-only \\
        \\
     [] \\
     [{  }+] / \\
     [([{  }+] \\
       [ ])...] \\
     [([{  }+] \\
       (?|sys:) \\
       [])...] \\
     [?sys:[ ]...]

# bpkg.update
#
bpkg -v update 

# If the test operation is supported by the package:
#
{
  # bpkg.test
  #
  bpkg -v test 
}

# For each (runtime) tests, examples, or benchmarks package referred
# to by the task manifest:
#
{
  # bpkg.test-separate.update ( : bpkg.update)
  #
  bpkg -v update 

  # bpkg.test-separate.test ( : bpkg.test)
  #
  bpkg -v test 
}

# If the install operation is supported by the package,
# config.install.root is specified, and no
# bpkg.bindist.{debian,fedora,archive} step is enabled:
#
{
  # bpkg.install
  #
  bpkg -v install 

  # If bbot.install.ldconfig step is enabled:
  #
  {
    # bbot.install.ldconfig
    #
    sudo ldconfig
  }
}

# If the install operation is supported by the package and
# bpkg.bindist.{debian,fedora,archive} step is enabled:
#
{
  # bpkg.bindist.{debian,fedora,archive}
  #
  bpkg -v bindist --distribution  \\
          \\
       
}

# If the install operation is supported by the package and
# bbot.sys-install step is enabled:
#
{
  # If  is 'debian':
  #
  {
    # bbot.sys-install.apt-get.update
    #
    sudo apt-get update

    # bbot.sys-install.apt-get.install
    #
    sudo apt-get install ...
  }
  #
  # Otherwise, if  is 'fedora':
  #
  {
    # bbot.sys-install.dnf.install
    #
    sudo dnf install ...
  }
  #
  # Otherwise, if  is 'archive':
  #
  {
    # For each package file:
    #
    {
      # bbot.sys-install.tar.extract
      #
      [sudo] tar -xf  \\
                   
    }

    # If bbot.sys-install.ldconfig step is enabled:
    #
    {
      # bbot.sys-install.ldconfig
      #
      sudo ldconfig
    }
  }
}

# If the main package is installed either from source or from the
# binary distribution package:
#
{
  # If the package contains subprojects that support the test
  # operation:
  #
  {
    # b.test-installed.create ( : b.create)
    #
    b -V create  \\
        

    # For each test subproject:
    #
    {
      # b.test-installed.configure ( : b.configure)
      #
      b -v configure []
    }

    # b.test-installed.test
    #
    b -v test
  }

  # If task manifest refers to any (runtime) tests, examples, or
  # benchmarks packages:
  #
  {
    # bpkg.test-separate-installed.create (
    #   bpkg.test-separate-installed.create_for_target :
    #     bpkg.test-separate-installed.create)
    #
    bpkg -V create  \\
           

    # bpkg.test-separate-installed.configure.add (
    #  : bpkg.configure.add)
    #
    bpkg -v add 

    # bpkg.test-separate-installed.configure.fetch (
    #   : bpkg.configure.fetch)
    #
    bpkg -v fetch --trust 

    # bpkg.test-separate-installed.configure.build (
    #   bpkg.global.configure.build,
    #   (bpkg.test-separate-installed.configure.build_for_target :
    #      bpkg.test-separate-installed.configure.build))
    #
    bpkg -v build --configure-only \\
            \\
         ([{  }+] \\
          [ ])... \\
         ?sys:/ \\
         [?sys:[ ]...]

    # For each (runtime) tests, examples, or benchmarks package
    # referred to by the task manifest:
    #
    {
      # bpkg.test-separate-installed.update ( : bpkg.update)
      #
      bpkg -v update 

      # bpkg.test-separate-installed.test ( : bpkg.test)
      #
      bpkg -v test 
    }
  }
}

# If the main package is installed from the binary distribution package:
#
{
  # If  is 'debian':
  #
  {
    # bbot.sys-uninstall.apt-get.remove
    #
    sudo apt-get remove ...
  }
  #
  # Otherwise, if  is 'fedora':
  #
  {
    # bbot.sys-uninstall.dnf.remove
    #
    sudo dnf remove ...
  }
  #
  # Otherwise, if  is 'archive':
  #
  {
    # Noop.
  }
}

# If the main package is installed from source:
#
{
  # bpkg.uninstall
  #
  bpkg -v uninstall 
}

# If the install operation is supported by the package and
# bbot.bindist.upload step is enabled:
#
{
  # Move the generated binary distribution files to the
  # upload/bindist// directory.
}

# If bbot.upload step is enabled and upload/ directory is not empty:
#
{
  # bbot.upload.tar.create
  #
  tar -cf upload.tar upload/

  # bbot.upload.tar.list
  #
  tar -tf upload.tar upload/
}

# end
#
# This step id can only be used as a breakpoint.
\

Worker script for \c{host} packages:

\
# If configuration is self-hosted:
#
{
  # bpkg.create (bpkg.host.create : b.create, bpkg.create)
  #
  bpkg -V create --type host -d   \\
         
}
#
# Otherwise:
#
{
  # [bpkg.create]
  #
  b -V create(, cc) config.config.load=~host
  bpkg -v create --existing --type host -d 
}

# bpkg.configure.add
#
bpkg -v add -d  

# bpkg.configure.fetch
#
bpkg -v fetch -d  --trust 

# If configuration is self-hosted and config.install.root is specified:
#
{
  # bpkg.create (bpkg.target.create : b.create, bpkg.create)
  #
  bpkg -V create -d   \\
         

  # [bpkg.link]
  #
  bpkg -v link -d  

  # bpkg.configure.add
  #
  bpkg -v add -d  

  # bpkg.configure.fetch
  #
  bpkg -v fetch -d  --trust 
}

# If task manifest refers to any build-time tests, examples, or
# benchmarks packages:
#
{
  # bpkg.create (bpkg.target.create : b.create, bpkg.create)
  #
  bpkg -V create -d   \\
         

  # [bpkg.create]
  #
  b -V create(, cc) config.config.load=~build2
  bpkg -v create --existing --type build2 -d 

  # [bpkg.link]
  #
  bpkg -v link -d  
  bpkg -v link -d  
  bpkg -v link -d    

  # If configuration is self-hosted and config.install.root is
  # specified:
  #
  {
    # [bpkg.link]
    #
    bpkg -v link -d  
  }

  # bpkg.configure.add
  #
  bpkg -v add -d  

  # bpkg.configure.fetch
  #
  bpkg -v fetch -d  --trust 
}

# bpkg.configure.build (bpkg.global.configure.build)
#
# Notes:
#
# - Some parts may be omitted.
#
# - Parts related to different configurations have different prefix
#   step ids:
#
#   bpkg.host.configure.build   for 
#   bpkg.target.configure.build for 
#   bpkg.target.configure.build for 
#
# - All parts have the same fallback step ids: b.configure and
#   bpkg.configure.build.
#
bpkg -v build --configure-only \\
   \\
[] \\
\\
{ --config-uuid  \\
     \\
  [] }+ \\
/ \\
\\
{ --config-uuid  \\
     \\
  [] }+ \\
/ \\
\\
({ --config-uuid  \\
      \\
   [] }+ \\
 [ ])... \\
\\
({ --config-uuid  \\
      \\
   [] }+ \\
 [ ])... \\
\\
({ --config-uuid  [--config-uuid ] \\
   [] }+ \\
 (?|sys:)[ ])... \\
\\
[?sys:[ ]...]

# bpkg.update
#
bpkg -v update -d  

# If the test operation is supported by the package:
#
{
  # bpkg.test
  #
  bpkg -v test -d  
}

# If configuration is self-hosted, then for each runtime tests,
# examples, or benchmarks package referred to by the task manifest:
#
{
  # bpkg.test-separate.update ( : bpkg.update)
  #
  bpkg -v update -d  

  # bpkg.test-separate.test ( : bpkg.test)
  #
  bpkg -v test -d  
}

# For each build-time tests, examples, or benchmarks package referred
# to by the task manifest:
#
{
  # bpkg.test-separate.update ( : bpkg.update)
  #
  bpkg -v update -d  

  # bpkg.test-separate.test ( : bpkg.test)
  #
  bpkg -v test -d  
}

# If configuration is self-hosted, the install operation is supported
# by the package, config.install.root is specified, and no
# bpkg.bindist.{debian,fedora,archive} step is enabled:
#
{
  # bpkg.install
  #
  bpkg -v install -d  

  # If bbot.install.ldconfig step is enabled:
  #
  {
    # bbot.install.ldconfig
    #
    sudo ldconfig
  }
}

# If configuration is self-hosted, the install operation is supported
# by the package, and bpkg.bindist.{debian,fedora,archive} step is
# enabled:
#
{
  # bpkg.bindist.{debian,fedora,archive}
  #
  bpkg -v bindist --distribution  \\
          \\
       
}

# If the install operation is supported by the package and
# bbot.sys-install step is enabled:
#
{
  # If  is 'debian':
  #
  {
    # bbot.sys-install.apt-get.update
    #
    sudo apt-get update

    # bbot.sys-install.apt-get.install
    #
    sudo apt-get install ...
  }
  #
  # Otherwise, if  is 'fedora':
  #
  {
    # bbot.sys-install.dnf.install
    #
    sudo dnf install ...
  }
  #
  # Otherwise, if  is 'archive':
  #
  {
    # For each package file:
    #
    {
      # bbot.sys-install.tar.extract
      #
      [sudo] tar -xf  \\
                   
    }

    # If bbot.sys-install.ldconfig step is enabled:
    #
    {
      # bbot.sys-install.ldconfig
      #
      sudo ldconfig
    }
  }
}

# If the main package is installed either from source or from the
# binary distribution package:
#
{
  # If the package contains subprojects that support the test
  # operation:
  #
  {
    # b.test-installed.create ( : b.create)
    #
    b -V create  \\
        

    # For each test subproject:
    #
    {
      # b.test-installed.configure ( : b.configure)
      #
      b -v configure []
    }

    # b.test-installed.test
    #
    b -v test
  }

  # If task manifest refers to any tests, examples, or benchmarks
  # packages:
  #
  {
    # bpkg.test-separate-installed.create (
    #   bpkg.test-separate-installed.create_for_host :
    #     bpkg.test-separate-installed.create)
    #
    bpkg -V create --type host -d   \\
           

    # If task manifest refers to any runtime tests, examples, or
    # benchmarks packages:
    #
    {
      # bpkg.test-separate-installed.configure.add (
      #   : bpkg.configure.add)
      #
      bpkg -v add -d  

      # bpkg.test-separate-installed.configure.fetch (
      #   : bpkg.configure.fetch)
      #
      bpkg -v fetch -d  --trust 
    }

    # If task manifest refers to any build-time tests, examples, or
    # benchmarks packages:
    #
    {
      # bpkg.test-separate-installed.create (
      #   bpkg.test-separate-installed.create_for_host :
      #     bpkg.test-separate-installed.create)
      #
      bpkg -V create -d   \\
             

      # [bpkg.test-separate-installed.create]
      #
      b -V create(, cc) config.config.load=~build2
      bpkg -v create --existing --type build2 -d 

      # [bpkg.test-separate-installed.link]
      #
      bpkg -v link -d  
      bpkg -v link -d  
      bpkg -v link -d    

      # bpkg.test-separate-installed.configure.add (
      #   : bpkg.configure.add)
      #
      bpkg -v add -d  

      # bpkg.test-separate-installed.configure.fetch (
      #   : bpkg.configure.fetch)
      #
      bpkg -v fetch -d  --trust 
    }

    # bpkg.test-separate-installed.configure.build (
    #   bpkg.global.configure.build,
    #   (bpkg.test-separate-installed.configure.build_for_host :
    #      bpkg.test-separate-installed.configure.build))
    #
    # Note that any of the runtime or build-time tests related parts
    # (but not both) may be omitted.
    #
    bpkg -v build --configure-only \\
       \\
    \\
    ({ --config-name  [] }+ \\
     [ ])... \\
    \\
    ({ --config-name  [] }+ \\
     [ ])... \\
    \\
    ?sys:/ \\
    \\
    [?sys:[ ]...]

    # For each tests, examples, or benchmarks package referred
    # to by the task manifest:
    #
    {
      # bpkg.test-separate-installed.update ( : bpkg.update)
      #
      bpkg -v update 

      # bpkg.test-separate-installed.test ( : bpkg.test)
      #
      bpkg -v test 
    }
  }
}

# If the main package is installed from the binary distribution package:
#
{
  # If  is 'debian':
  #
  {
    # bbot.sys-uninstall.apt-get.remove
    #
    sudo apt-get remove ...
  }
  #
  # Otherwise, if  is 'fedora':
  #
  {
    # bbot.sys-uninstall.dnf.remove
    #
    sudo dnf remove ...
  }
  #
  # Otherwise, if  is 'archive':
  #
  {
    # Noop.
  }
}

# If the main package is installed from source:
#
{
  # bpkg.uninstall
  #
  bpkg -v uninstall -d  
}

# If the install operation is supported by the package and
# bbot.bindist.upload step is enabled:
#
{
  # Move the generated binary distribution files to the
  # upload/bindist// directory.
}

# If bbot.upload step is enabled and upload/ directory is not empty:
#
{
  # bbot.upload.tar.create
  #
  tar -cf upload.tar upload/

  # bbot.upload.tar.list
  #
  tar -tf upload.tar upload/
}

# end
#
# This step id can only be used as a breakpoint.
\

Worker script for \c{module} packages:

\
# If configuration is self-hosted:
#
{
  # bpkg.create (bpkg.module.create)
  #
  b -V create(, ) config.config.load=~build2 \\
      
  bpkg -v create --existing --type build2 -d 
}
#
# Otherwise:
#
{
  # [bpkg.create]
  #
  b -V create(, cc) config.config.load=~build2
  bpkg -v create --existing --type build2 -d 
}

# bpkg.configure.add
#
bpkg -v add -d  

# bpkg.configure.fetch
#
bpkg -v fetch -d  --trust 

# If configuration is self-hosted and config.install.root is specified:
#
{
  # bpkg.create (bpkg.module.create)
  #
  b -V create(, ) \\
    config.config.load=~build2 \\
      
  bpkg -v create --existing --type build2 -d 

  # bpkg.configure.add
  #
  bpkg -v add -d  

  # bpkg.configure.fetch
  #
  bpkg -v fetch -d  --trust 
}

# If task manifest refers to any (build-time) tests, examples, or
# benchmarks packages:
#
{
  # bpkg.create (bpkg.target.create : b.create, bpkg.create)
  #
  bpkg -V create -d   \\
         

  # [bpkg.create]
  #
  b -V create(, cc) config.config.load=~host
  bpkg -v create --existing --type host -d 

  # [bpkg.link]
  #
  bpkg -v link -d  
  bpkg -v link -d  
  bpkg -v link -d    

  # bpkg.configure.add
  #
  bpkg -v add -d  

  # bpkg.configure.fetch
  #
  bpkg -v fetch -d  --trust 
}

# bpkg.configure.build (bpkg.global.configure.build)
#
# Notes:
#
# - Some parts may be omitted.
#
# - Parts related to different configurations have different prefix
#   step ids:
#
#   bpkg.module.configure.build for 
#   bpkg.target.configure.build for 
#   bpkg.target.configure.build for 
#
# - All parts have the same fallback step ids: b.configure and
#   bpkg.configure.build.
#
bpkg -v build --configure-only \\
   \\
[] \\
\\
{ --config-uuid  \\
     \\
  [] }+ \\
/ \\
\\
{ --config-uuid  \\
     \\
  [] }+ \\
/ \\
\\
({ --config-uuid  \\
      \\
   [] }+ \\
 [ ])... \\
\\
({ --config-uuid  [--config-uuid ] \\
   [] }+ \\
 (?|sys:)[ ])... \\
\\
[?sys:[ ]...]

# bpkg.update
#
bpkg -v update -d  

# If the test operation is supported by the package:
#
{
  # bpkg.test
  #
  bpkg -v test -d  
}

# For each (build-time) tests, examples, or benchmarks package referred
# to by the task manifest:
#
{
  # bpkg.test-separate.update ( : bpkg.update)
  #
  bpkg -v update -d  

  # bpkg.test-separate.test ( : bpkg.test)
  #
  bpkg -v test -d  
}

# If configuration is self-hosted, the install operation is supported
# by the package, config.install.root is specified, and no
# bpkg.bindist.{debian,fedora,archive} step is enabled:
#
{
  # bpkg.install
  #
  bpkg -v install -d  

  # If bbot.install.ldconfig step is enabled:
  #
  {
    # bbot.install.ldconfig
    #
    sudo ldconfig
  }
}

# If configuration is self-hosted, the install operation is supported
# by the package, and bpkg.bindist.{debian,fedora,archive} step is
# enabled:
#
{
  # bpkg.bindist.{debian,fedora,archive}
  #
  bpkg -v bindist --distribution  \\
          \\
       
}

# If the install operation is supported by the package and
# bbot.sys-install step is enabled:
#
{
  # If  is 'debian':
  #
  {
    # bbot.sys-install.apt-get.update
    #
    sudo apt-get update

    # bbot.sys-install.apt-get.install
    #
    sudo apt-get install ...
  }
  #
  # Otherwise, if  is 'fedora':
  #
  {
    # bbot.sys-install.dnf.install
    #
    sudo dnf install ...
  }
  #
  # Otherwise, if  is 'archive':
  #
  {
    # For each package file:
    #
    {
      # bbot.sys-install.tar.extract
      #
      [sudo] tar -xf  \\
                   
    }

    # If bbot.sys-install.ldconfig step is enabled:
    #
    {
      # bbot.sys-install.ldconfig
      #
      sudo ldconfig
    }
  }
}

# If the main package is installed either from source or from the
# binary distribution package:
#
{
  # If task manifest refers to any (build-time) tests, examples, or
  # benchmarks packages:
  #
  {
    # [bpkg.test-separate-installed.create]
    #
    b -V create(, cc) config.config.load=~build2
    bpkg -v create --existing --type build2 -d 

    # bpkg.test-separate-installed.create (
    #   bpkg.test-separate-installed.create_for_module :
    #     bpkg.test-separate-installed.create)
    #
    bpkg -V create -d   \\
           

    # bpkg.test-separate-installed.create (
    #   bpkg.test-separate-installed.create_for_module :
    #     bpkg.test-separate-installed.create)
    #
    bpkg -V create --type host -d   \\
           

    # [bpkg.test-separate-installed.link]
    #
    bpkg -v link -d  
    bpkg -v link -d  
    bpkg -v link -d    

    # bpkg.test-separate-installed.configure.add (
    #   : bpkg.configure.add)
    #
    bpkg -v add -d  

    # bpkg.test-separate-installed.configure.fetch (
    #   : bpkg.configure.fetch)
    #
    bpkg -v fetch -d  --trust 

    # bpkg.test-separate-installed.configure.build (
    #   bpkg.global.configure.build,
    #   (bpkg.test-separate-installed.configure.build_for_module :
    #      bpkg.test-separate-installed.configure.build))
    #
    bpkg -v build --configure-only \\
       \\
    \\
    ({ --config-name  [] }+ \\
     [ ])... \\
    \\
    ?sys:/ \\
    \\
    [?sys:[ ]...]

    # For each (build-time) tests, examples, or benchmarks package
    # referred to by the task manifest:
    #
    {
      # bpkg.test-separate-installed.update ( : bpkg.update)
      #
      bpkg -v update -d  

      # bpkg.test-separate-installed.test ( : bpkg.test)
      #
      bpkg -v test -d  
    }
  }
}

# If the main package is installed from the binary distribution package:
#
{
  # If  is 'debian':
  #
  {
    # bbot.sys-uninstall.apt-get.remove
    #
    sudo apt-get remove ...
  }
  #
  # Otherwise, if  is 'fedora':
  #
  {
    # bbot.sys-uninstall.dnf.remove
    #
    sudo dnf remove ...
  }
  #
  # Otherwise, if  is 'archive':
  #
  {
    # Noop.
  }
}

# If the main package is installed from source:
#
{
  # bpkg.uninstall
  #
  bpkg -v uninstall -d  
}

# If the install operation is supported by the package and
# bbot.bindist.upload step is enabled:
#
{
  # Move the generated binary distribution files to the
  # upload/bindist// directory.
}

# If bbot.upload step is enabled and upload/ directory is not empty:
#
{
  # bbot.upload.tar.create
  #
  tar -cf upload.tar upload/

  # bbot.upload.tar.list
  #
  tar -tf upload.tar upload/
}

# end
#
# This step id can only be used as a breakpoint.
\

For details on configuring and testing installation refer to
\l{#arch-controller Controller Logic}.

If a primary or test package comes from a version control-based repository,
then its \c{dist} meta-operation is also tested as a part of the
\c{bpkg[.*].configure.build} steps by re-distributing the source directory in
the load distribution mode after configuration.

If the build is interactive, then the worker pauses its execution at the
specified breakpoint and prompts the user whether to continue or abort the
execution. If the breakpoint is a step id, then the worker pauses prior to
executing every command of the specified step. Otherwise, the breakpoint
denotes the result status and the worker pauses if the command results with
the specified or more critical status (see \l{#arch-result Result Manifest}).

As an example, the following POSIX shell script can be used to setup the
environment for building C and C++ packages with GCC 9 on most Linux
distributions.

\
#!/bin/sh

# Environment setup script for C/C++ compilation with GCC 9.
#
# $1  - target
# $2  - bbot executable
# $3+ - bbot options

set -e # Exit on errors.

mode=
case \"$1\" in
  x86_64-*)
    #mode=-m64
    ;;
  i?86-*)
    mode=-m32
    ;;
  *)
    echo \"unknown target: '$1'\" 1>&2
    exit 1
    ;;
esac
shift

exec \"$@\" cc config.c=\"gcc-9 $mode\" config.cxx=\"g++-9 $mode\"
\

\h2#arch-worker-bindist-result|Bindist Result Manifest|

At the \c{bbot.bindist.upload} step the worker also creates the
\c{bindist-result.json} and \c{bindist-result.manifest} files in the
\c{upload/bindist//} directory, next to the generated binary
distribution package files. The \c{bindist-result.json} file contains the
structured JSON output of the \l{bpkg-pkg-bindist(1)} command. The
\c{bindist-result.manifest} file contains the subset of the information from
\c{bindist-result.json}. Specifically, it starts with the binary distribution
package header manifest followed by a list of package file manifests. The
manifest values are:

\
distribution:
architecture:
os-release-name-id:
os-release-version-id:
package-name:
package-version:
[package-system-version]:

package-file-type:
package-file-path:
[package-file-system-name]:
\

The manifest values derive from the corresponding JSON object values and
preserve their semantics. The only differences are that the
\c{os-release-version-id} value may not be absent and the
\c{package-file-path} values are relative to the
\c{upload/bindist//} directory and are in the POSIX
representation. See \l{bpkg-pkg-bindist(1)} for the JSON values semantics.

\h#arch-controller|Controller Logic|

A \c{bbot} controller that issues own build tasks maps available build
machines (as reported by agents) to \i{build target configurations} according
to the \c{buildtab} configuration file. Blank lines and lines that start with
\c{#} are ignored. All other lines in this file have the following format:

\
  [/]  []* []*

 = [[+|-]:](|