// file : bbot/worker.cli // license : MIT; see accompanying LICENSE file include ; "\section=1" "\name=bbot-worker" "\summary=build bot worker" namespace bbot { { " ", " \h|SYNOPSIS| \c{\b{bbot-worker --help}\n \b{bbot-worker --version}\n \b{bbot-worker --bootstrap} []\n \b{bbot-worker --startup} []\n \b{bbot-worker} [] ... ...} \h|DESCRIPTION| \cb{bbot-worker} @@ TODO. If the \cb{--bootstrap} mode option is specified, then the worker performs the initial machine bootstrap and writes the bootstrap result manifest to \c{stdout}. If the \cb{--startup} mode option is specified, then the worker performs the environment setup and then re-executes in the build mode. If neither of the mode options is specified, then the worker proceeds to performing the build task. " } class worker_options { "\h|OPTIONS|" // // NOTE: when adding new options, consider whether they should be // propagated from startup to build. // bool --help {"Print usage information and exit."} bool --version {"Print version and exit."} uint16_t --verbose = 1 { "", "Set the diagnostics verbosity to between 0 and 6 with level 1 being the default." } bool --bootstrap { "Perform the inital machine bootstrap insteading of building." } bool --startup { "Perform the environment setup and then re-execute for building." } bool --systemd-daemon { "Run as a simple systemd daemon." } dir_path --build { "", "The directory to perform the build in. If not specified, then the current working directory is used." } dir_path --environments { "", "The directory containing the environment setup executables. If not specified, then the user's home directory is used." } path --env-script { "", "The environment setup executable path. This option is normally passed by the worker running in the startup mode to the worker executed in the build mode." } string --env-target { "", "The environment setup executable target argument. This option is normally passed by the worker running in the startup mode to the worker executed in the build mode." } // Testing options. // string --tftp-host = "196.254.111.222" { "", "The TFTP host address and, optionally, port to use to download the build task and to upload the build result. By default the link-local address 196.254.111.222 with the standard TFTP port (69) is used." } }; " \h|EXIT STATUS| Non-zero exit status is returned in case of an error. In the build mode, exit code 2 is used to signal abnormal termination where the worker uploaded the result manifest itself. " }