./flow list
Synopsis
$ ./flow list [--builtin] [--alias] [--steps] [--configs] [--all] [--pipe]
Description
The ./flow list command prints the CLI params a proj-flow or ./flow can take. Most of the output is about possible ./flow run command parameters or aliases.
--builtinPrint list of known first-category commands.
--stepsPrint all known steps available to
./flow run.--aliasPrint all
./flow runaliases taken from flow config file from"entry"object. In a freshly-initialized project it is something likeentry: config: [ Conan, CMake ] build: [ Build ] test: [ Build, Test ] verify: - Build - Test - Sign - Pack - SignPackages - Store - BinInst - DevInst
Each key in this object can be used as a command replacing
run. For instance, calling$ ./flow config [args...]
is the same, as if calling
$ ./flow run --step Conan,CMake [args...]
--configsPrint all key names from
.flow/matrix.yml. This information can be used to decide, which-Dparameters to./flow runmake sense in current project.--allPrint all the above.
--pipePrint the parameters without any fancy editing.