Build Tools is a Terminus Plugin that contains a collection of commands useful for projects making use of an external Git provider and Continuous Integration (CI) along with Pantheon.
- Project Purpose
- Requirements
- Installation
- Setup
- Available Services
- Commands
- Customization
- Build Tools Command Examples
- Help
- Related Repositories
The main purposes of the Build Tools project are to:
Ease the creation of new projects making use of an external Git provider, a Continuous Integration service, and Pantheon.
This is primarily done through the build:project:create
commands, which scaffolds new projects from a template repository and performs one-time setup, such as configuring SSH keys and environment variables, needed to connect an external Git provider and CI service with Pantheon. For detailed set-up instructions, see the Terminus Build Tools Guide. To use your own template repository see Customization.
Add additional commands to Terminus to make tasks common in an automated CI workflow easier. See Commands and Build Tools Command Examples for details.
- If you are using Terminus 3, you must use the Build Tools
3.x
release. - If you are using Terminus 2, you must use the Build Tools
2.x
release.
PHP 7.2
or greater is recommended.
terminus self:plugin:install terminus-build-tools-plugin
mkdir -p ~/.terminus/plugins
composer create-project --no-dev -d ~/.terminus/plugins pantheon-systems/terminus-build-tools-plugin:^2
The Terminus Build Tools plugin should be installed without dev dependencies. If you install the plugin with a different method, such as cloning this source repository, use composer install --no-dev
to download the project dependencies.
It is recommended that you use one of the provided example projects as a template when creating a new project. All of the example projects use Terminus 3
and Build Tools 3.x
.
The default template repositories are each assigned an abbreviation, as shown below:
More details about these template repositories see Template Repositories in this document or visit the links above.
You can get started with one of these examples by using the build:project:create
command:
$ terminus build:project:create --team='My Agency Name' wp my-site
This command will create:
- A Pantheon site
- A GitHub repository
- A CircleCI test configuration
It will prompt you for the credentials it needs to create these assets. While GitHub and CircleCI are the defaults, other providers are supported as well. See available services for details.
Note: After running this command, if you get an error "There are no commands defined in the "build:project" namespace", then you may need to install this Terminus plugin first as described in Requirements, above.
Note: It is important to specify the name of your agency organization via the --team
option. If you do not do this, then your new site will be associated with your user and will not have the capability to create multidev environments.
The build:project:create
command supports services in the following combination:
Git Host | CI Service |
---|---|
GitHub | CircleCI |
GitHub | Github Actions |
GitLab | GitLabCI |
BitBucket | CircleCI |
Note: if using Github Actions, token should have the "workflow" scope.
$ terminus build:project:create --git=gitlab --team='My Agency Name' wp my-site
$ terminus build:project:create --git=bitbucket --team='My Agency Name' wp my-site
$ terminus build:project:create --ci=githubactions --team='My Agency Name' wp my-site
Bitbucket
- Composer Lock Updater isn't working quite yet.
The following commands are available as part of the Build Tools plugin.
The build:project:create
command is used to initialize projects within the Git PR workflow. Automated setup of the Pantheon website along with the corresponding Git and CI provider is included.
Additional options are available to further customize the build:project:create
command:
Option | Description |
---|---|
--pantheon-site | The name to use for the Pantheon site (defaults to the name of the Git site) |
--team | The Pantheon team to associate the site with |
--org | The Git organization to place the repository in (defaults to authenticated user) |
--label | The friendly name to use for the Pantheon site (defaults to the name of the Git site) |
The git user email address to use when committing build results | |
--test-site-name | The name to use when installing the test site |
--admin-password | The password to use for the admin when installing the test site |
--admin-email | The email address to use for the admin |
--admin-username | The username to use for the admin |
--stability | The stability to use with composer when creating the project (defaults to dev) |
--keep | The ability to keep a project repository cloned after your project is created |
--use-ssh | The ability to perform the initial git push to the repository provider over SSH instead of HTTPS |
--ci | The CI provider to use. Defaults to "circleci" |
--git | The git repository provider to use. Defaults to "github" |
--visibility | The visibility of the project. Defaults to "public". Use "public" or "private" for GitHub and "public", "private", or "internal" for GitLab |
--region | The region to create the site in. See the Pantheon regions documentation for details. |
--template-repository | Private composer repository to download template or git url if using the expanded version when no composer repository. |
--ci-template | Git repo that contains the CI scripts that will be copied if there is no ci in the source project. |
If you want to use a private composer repository, you should provide the credentials like this:
export TERMINUS_BUILD_TOOLS_COMPOSER_AUTH=json_encoded_string
or in ~/.terminus/config.yml file under build-tools.composer-auth.
Then, in the build:project:create command, pass a composer-repository option like this:
terminus build:project:create --template-repository="https://repo.packagist.com/myorg" myorg/myrepo my-project
If you want to use git repository that has not been published to packagist as your template, you should do it like this:
terminus build:project:create --template-repository="git@github.com:myorg/myrepo.git" myorg/myrepo-template my-project
The package name in the composer.json file into the template repo should be "myorg/myrepo-template". If myorg/myrepo is a private repo, you should have access to it in your current terminal.
You can also use the following shorthand:
terminus build:project:create git@github.com:myorg/myrepo.git my-project
and build tools will figure out the right package name for you.
You can find more info about composer repositories, private packages, cli authentication and authentication methods in the official composer documentation.
See terminus help build:project:create
for more information.
The build:project:repair
command is used to repair projects that were created with the Build Tools plugin. This is useful for rotating credentials, such as provider authentication tokens.
Additional options are available to further customize the build:project:repair
command:
Option | Description |
---|---|
--env | The environment variables you would like to set on the CI system |
The build:comment:add:commit
command is used to add a comment to a commit on the Git Provider. This is useful in CI scripts for commenting as multidev environments are created or other code feedback is determined.
Either the --message
and/or the --site_url
options are required.
Additional options are available to customize the build:comment:add:commit
command:
Option | Description |
---|---|
--sha | The SHA hash of the commit to add the comment to |
--message | The message to post to the commit |
--site_url | If provided, will include a "Visit Site" link at the start of the comment, linking to the provided site URL |
The build:comment:add:pr
command is used to add a comment to a pull request on the Git Provider. This is useful in CI scripts for commenting as multidev environments are created or other code feedback is determined.
The --pr_id
option and either the --message
and/or the --site_url
options are required.
Additional options are available to customize the build:comment:add:pr
command:
Option | Description |
---|---|
--pr_id | Required. The number of the pull request to add the comment to |
--message | The message to post to the pull request |
--site_url | If provided, will include a "Visit Site" link at the start of the pull request, linking to the provided site URL |
The build:credentials:clear
command is available to clear cached credentials from Build Tools. This is useful when developing Build Tools or trying to remove credentials from a machine.
There are no additional options for this command.
The build:env:create
command creates the specified multidev environment on the given Pantheon site from the build assets at the current working directory.
Option | Description |
---|---|
--label | The name of the environment in commit comments |
--clone-content | Clone the content from the dev environment to the new multidev environment |
--db-only | When cloning content, whether to only clone the database (by default, both the database and files are cloned |
--message | The commit message to use when committing the built assets to Pantheon |
--no-git-force | Set this flag to omit the --force flag from git add and git push |
By default, this command uses the --force
flag for both git add
and git push
. Passing --no-git-force
will prevent adding this flag but unless your remotes are in sync, it will most likely make the push fail.
The build:env:delete:ci
command is used to delete multidev environments on Pantheon that match the CI pattern of builds (ci-*
).
Option | Description |
---|---|
--keep | The number of environments matching the pattern to keep |
--dry-run | If set, this command only determines which environments should be deleted but doesn't actually delete them |
The build:env:delete:pr
command is used to delete multidev environments on Pantheon that match the PR pattern of builds (pr-*
) for pull requests (GitHub and BitBucket) or merge requests (GitLab) that have been closed.
Option | Description |
---|---|
--dry-run | If set, this command only determines which environments should be deleted but doesn't actually delete them |
The build:env:install
command is used to install the CMS on a Pantheon site the specified site.
Option | Description |
---|---|
--account-mail | The email address for the first user account created during install |
--account-name | The username for the first user account created during install |
--account-pass | The password for the first user account created during install |
--site-mail | The email address used for the CMS |
--site-name | The name of the site to be set within the CMS |
The build:env:list
command is used to list the multidev environments in the specified site.
There are no additional options for this command.
The build:env:merge
command merges a multidev environment in Pantheon into the dev environment.
Option | Description |
---|---|
--label | The name of the environment when referred to in commit comments |
--delete | Whether or not to delete the multidev environment after it is merged |
The build:env:obliterate
command deletes a project that was set up through the build:project:create
workflow. This includes the Pantheon site as well as the Git provider repository and the CI provider project.
Note: this is a destructive, irreversible command that should be used with caution.
There are no additional command options for this command.
The build:env:push
command pushes code in the current directory to an existing Pantheon site/environment.
Option | Description |
---|---|
--label | The name of the site when referred to in commit comments. |
--message | The commit message to use when committing built code to Pantheon |
--no-git-force | Set this flag to omit the --force flag from git add and git push |
By default, this command uses the --force
flag for both git add
and git push
. Passing --no-git-force
will prevent adding this flag but unless your remotes are in sync, it will most likely make the push fail.
The build:project:info
command displays information about a site created by the build:project:create
command.
There are no additional command options for this command.
The build:secrets:delete
command deletes a secret from Pantheon. These secrets are commonly used for storing information needed by CI integrations, such as Quicksilver Pushback.
Option | Description |
---|---|
--file | The name of the file to use for storing the secret. Defaults to tokens.json |
The build:secrets:list
command lists all secret from Pantheon. These secrets are commonly used for storing information needed by future CI integration such as Quicksilver Pushback.
Option | Description |
---|---|
--file | The name of the file to use for storing the secret. Defaults to tokens.json |
The build:secrets:set
command sets a secret in a Pantheon. These secrets are commonly used for storing information needed by future CI integration such as Quicksilver Pushback.
Option | Description |
---|---|
--file | The name of the file to use for storing the secret. Defaults to tokens.json |
--clear | If set, will overwrite a secret with the existing name |
--skip-if-empty | If set, will not write anything if the value passed to the command is empty |
The build:secrets:show
command shows a secret from Pantheon. These secrets are commonly used for storing information needed by CI integrations, such as Quicksilver Pushback.
Option | Description |
---|---|
--file | The name of the file to use for storing the secret. Defaults to tokens.json |
The build:workflow:wait
command waits for a workflow in Pantheon to complete before returning. This is useful when waiting for code to be deployed to a Pantheon environment.
Option | Description |
---|---|
--start | The time to ignore workflow operations before |
--max | The maximum amount of time to wait for a workflow to complete |
The build:gitignore:cut
command cuts your .gitignore file in the cut line. This is useful before pushing to Pantheon from a source repo.
You may easily create your own project template by forking one of the Pantheon maintained examples (linked above) and customizing it to suit your needs. To use a custom starter, register your project on Packagist, and then use the projects org/name with the build:project:create
command:
$ terminus build:project:create --team='My Agency Name' my-project/my-starter my-site
See Starter Site Shortcuts below for instructions on defining your own shortcuts for your starter projects.
Configuration values for the Terminus Build Tools Plugin may be stored in your Terminus Configuration file, located at ~/.terminus/config.yml
. This is especially useful for agencies who would like every site created within their Pantheon team.
Terminus configuration is based on the Robo PHP configuration system. Default option values for Terminus commands can be defined in the same way as other Robo applications. For example, the options for the command build:project:create
are stored in the section command:
> build:
> project:
> create:
> options:
. The example below provides default values for the --admin-password
and --team
options.
command:
build:
project:
create:
options:
admin-password: secret-secret
team: My Pantheon Org
The GitLab URL used by Build Tools can be defined by updating the build-tools:provider:git:gitlab:url
configuration value, as demonstrated by the example below. Note that you will need to replace hostname
with the actual GitLab instance hostname.
build-tools:
provider:
git:
gitlab:
url: hostname
If you often create sites based on certain common starter sites, you may also use your Terminus configuration file to define custom starter site shortcuts. The example below defines shortcuts for the Lightning and Contenta distributions:
command:
build:
project:
create:
shortcuts:
contenta: pantheon-systems/example-drops-8-composer:dev-contenta
Note that the project name follows the standard defined by Composer: org-name
/ project-name
: dev- branch-name
.
To customize this for a specific project:
- Define necessary environment variables within your CI provider:
- TERMINUS_SITE: The name of the Pantheon site that will be used in testing.
- TERMINUS_TOKEN: A Terminus OAuth token that has write access to the terminus site specified by TERMINUS_SITE.
- GIT_EMAIL: Used to configure the git user’s email address for commits we make.
- Customize
dependencies:
as needed to install additional tools. - Replace example
test:
section with commands to run your tests. - Add a
build-assets
script to your composer.json file.
Note that using a single environment for each PR means that it is not possible to run multiple tests against the same PR at the same time. Currently, no effort is made to cancel running tests when a new one is kicked off; if the concurrent build is not cancelled before a new commit is pushed to the PR branch, then the two tests could potentially conflict with each other. If support for parallel tests on the same PR is desired, then it is possible to eliminate PR environments, and make all tests run in their own independent CI environment. To do this, configure your CI provider by adding the following environment variable:
TERMINUS_ENV: $CI_LABEL
To use this tool on a Pantheon site that does not have multidev environments support, it is possible to run all tests against the dev
environment. If this is done, then it is not possible to run multiple tests at the same time. To use the dev
environment, configure your CI provider by adding the following environment variable:
TERMINUS_ENV: dev
** IMPORTANT NOTE: ** If you initially set up your site using terminus build:project:create
, and you do not use the --team
option, or the team you specify is not an Agency organization, then your configuration will automatically be set up to use only the dev environment. If you later add multidev capabilities to your site, you will need to edit the environment variables in your CI configuration and delete the entry for TERMINUS_ENV
.
The examples below show how some of the other build:env:
commands are used within test scripts. It is not usually necessary to run any of these commands directly; they may be of interest if you are customizing or building your own test scripts.
terminus build:env:create my-pantheon-site.dev ci-1234
This command will commit the generated artifacts to a new branch and then create the requested multidev environment for use in testing.
terminus build:env:push my-pantheon-site.dev
This command will commit the generated artifacts to an existing multidev environment, or to the dev environment.
terminus build:env:merge my-pantheon-site.ci-1234
terminus build:env:delete my-pantheon-site '^ci-' --keep=2 --delete-branch
terminus build:env:list
terminus build:comment:add:pr --pr_number=123 --message="Tests passed!"
Run terminus list build
for a complete list of available commands. Use terminus help <command>
to get help on one command.
In addition to the Terminus Build Tools Plugin, Pantheon maintains template repositories for:
Each repository includes an opinionated set of workflows and deployment scripts. These templates are meant to be a one-time starting point for new projects and customized as needed. Improvements made over time must be manually applied to existing projects. These are examples, not frameworks.
Pantheon maintains a Build Tools CI Dockerfile, which is deployed to quay.io
, for use in Continuous Integration environments. It contains common Pantheon tools, such as Terminus and the Terminus Build Tools plugin. The deployed image tags follow semantic versioning.
Quicksilver pushback is a project that makes use of Pantheon's Quicksilver Webhooks to apply code commits made on Pantheon to an external Git provider.