// file : bdep/ci.cli // copyright : Copyright (c) 2014-2019 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file include ; include ; "\section=1" "\name=bdep-ci" "\summary=submit project test request to CI server" namespace bdep { { " ", "\h|SYNOPSIS| \c{\b{bdep ci} [] [] []} \c{ = (\b{--directory}|\b{-d} )... | \n = \b{--directory}|\b{-d} \n = \b{@} | \b{--config}|\b{-c} } \h|DESCRIPTION| The \cb{ci} command submits the project packages test request to a CI server. If no project or package directory is specified, then the current working directory is assumed. If no configuration is specified, then the default configuration is used. If the specified directory is a project directory, then all the packages initialized in the configuration are submitted. See \l{bdep-projects-configs(1)} for details on specifying projects and configurations. A CI request consists of the specified packages and their versions as well as the project's remote version control repository URL corresponding to the current (local) state of the project. The CI server should be able to fetch these package versions from this repository as well as any dependencies from this repository or its prerequisite/complement repositories, according to each package's \cb{repositories.manifest}. If the CI server is not explicitly specified with the \cb{--server} option, the request is submitted to \cb{ci.cppget.org} by default. Unless the remote repository URL is specified with the \cb{--repository} option, it will be automatically derived from the version control's \"remote\" URL. In case of \cb{git(1)}, it will be based on the \cb{remote.origin.url} configuration value unless overridden with \cb{remote.origin.build2Url}. The repository URL is then adjusted to corresponding to the current (local) state of the project. In case of \cb{git(1)}, the current branch and commit id are added as the repository URL fragment (see \l{bpkg-repository-types(1)} for details). Some package manifest values can be overridden as part of the CI request submission using the \cb{--override} and \cb{--overrides-file} options as well as their \cb{--builds} and \cb{--build-email} shortcuts. This is primarily useful for specifying alternative build configurations and/or build notification emails. For example: \ $ bdep ci --builds gcc \ Note that manifest overrides override the entire value group that they belong to. Currently, the following value groups can be overridden with the \cb{build*-email} group overridden by default as if by specifying an empty build email. \ build-email build-{warning,error}-email builds build-{include,exclude} \ While the exact interpretation of the CI request depends on the specific service, normally, the CI server will respond with a reference that can be used to query the results. See \l{brep#ci Package CI} for details on the CI request handling. " } class cmd_ci_options: project_options { "\h|CI OPTIONS|" bool --yes|-y { "Don't prompt for confirmation before submitting." } url --server { "", "CI server to submit the request to." } url --repository { "", "Remote repository URL for the project." } // Note: the following options are for documentation only (see --overrides // below for details). // strings --override { ":", "Package manifest value override. Repeat this option to override multiple values." } path --overrides-file { "", "Read manifest value overrides from the specified manifest fragment file. Repeat this option to specify multiple override files." } strings --builds { "", "Shortcut for \c{\b{--override\ builds:}}." } string --build-email { "", "Shortcut for \c{\b{--override\ build-email:}}." } // All the overrides-related options are handled with a common parser and // are collected in a single manifest value list that is accessible via // the --overrides option accessor. The --overrides option is "fake" in // that it only serves to collect the values in a single list while // preserving their order. Note that for this trick (or hack, if you // will) to work, this option should come after all the options it // aliases. // ci_override --overrides | --override | --overrides-file | --builds | --build-email; string --simulate { "", "Simulate the specified outcome of the CI process without actually performing any externally visible actions (such as testing the packages or publishing the result). The commonly used outcome value is \cb{success}. For other recognized outcomes refer to the CI service documentation." } }; }