BLT uses Robo to provide commands.
To create your own Robo PHP command:
- Create a new file in
blt/src/Commands
named using the pattern*Command.php
. The file naming convention is required. - You must use the namespace
Acquia\Blt\Custom\Commands
in your command file. - Generate an example command file by executing
blt example:init
. You may use the generated file as a guide for writing your own command. - Follow the Robo PHP Getting Started guide to write a custom command.
BLT uses the Annotated Command library to enable you to hook into BLT commands. This allows you to execute custom code in response to various events, typically just before or just after a BLT command is executed.
To create a hook:
- Create a new file in
blt/src/Hooks
named using the pattern*Hook.php
. - Generate an example hook file by executing
blt example:init
. You may use the generated file as a guide for writing your own command.
For a list of all available hook types, see Annotated Command's hook types.
To replace a BLT command with your own custom version, implement the replace command annotation for your custom command.
Please note that when you do this, you take responsibility for maintaining your custom command. Your command may break when changes are made to the upstream version of the command in BLT itself.
You may disable any BLT command. This will cause the target to be skipped during the normal build process. To disable a target, add a disable-targets
key to your project.yml file:
disable-targets:
validate:
phpcs: true
git:
commit-msg: true
This snippet would cause the validate:phpcs
and git:commit-msg
targets to be skipped during BLT builds.
To modify the behavior of PHPCS, see validate:phpcs documentation.
To modify the filesets that are used in other commands, such as validate:twig
, validate:yaml
, and validate:lint
:
-
Generate an example
Filesets.php
file by executingblt example:init
. You may use the generated file as a guide for writing your own filesite. -
Create a public method in the
Filesets
class in the generated file. -
Add a Fileset annotation to your public method, specifying its id:
@fileset(id="files.yaml.custom")
-
Instantiate and return a
Symfony\Component\Finder\Finder
object. The files found by the finder comprise the fileset. -
You may use the Fileset id in various configuration values in your
blt/project.yml
file. E.g., modifyvalidate:yaml
such that it scans only your custom fileset, you would add the following toblt/project.yml
:validate: yaml: filesets: - files.yaml.custom
BLT configuration can be customized by overriding the value of default variable values. You can find the default value of any BLT variable in build.yml.
Configuration values are loaded, in this order, from the following list of YAML files:
- blt/project.yml
- blt/[environment].yml
- blt/project.local.yml
Values loaded from the later files will overwrite values in earlier files. Note, if you would like to override a non-empty value with an empty value, the override value must be set to null
and not ''
or []
.
You can override any variable value by adding an entry for that variable to your project.yml
file. This change will be committed to your repository and shared by all developers for the project. For example:
behat.tags: @mytags
You can override a variable value for your local machine by adding an entry for that variable to your project.local.yml file
. This change will not be committed to your repository.
You may override a variable value for specific environments, such as a the ci
environment, by adding an entry for that variable to a file named in the pattern [environment].yml. For instance, ci.yml.
At present, only the CI environment is automatically detected.
You may overwrite a variable value at runtime by specifying the variable value in your blt
command using argument syntax -D [key]=[value]
, e.g.,
blt tests:behat -D behat.tags='@mytags'
Listed below are some of the more commonly customized BLT targets.
To modify the behavior of the deploy:build
target, you may override BLT's deploy
configuration:
deploy:
# If true, dependencies will be built during deploy. If false, you should commit dependencies directly.
build-dependencies: true
dir: ${repo.root}/deploy
exclude_file: ${blt.root}/scripts/blt/scripts/deploy/deploy-exclude.txt
exclude_additions_file: ${repo.root}/blt/deploy-exclude-additions.txt
gitignore_file: ${blt.root}/blt/scripts/deploy/.gitignore
git:
# If true, deploys will fail if there are uncommitted changes.
failOnDirty: true
More specifically, you can modify the build artifact in the following key ways:
-
Change which files are rsynced to the artifact by providing your own
deploy.exclude_file
value in project.yml. See upstream deploy-exclude.txt for example contents. E.g.,deploy: exclude_file: ${repo.root}/blt/deploy/rsync-exclude.txt
-
If you'd simply like to add onto the upstream deploy-exclude.txt instead of overriding it, you need not define your own
deploy.exclude_file
. Instead, simply leverage thedeploy-exclude-additions.txt
file found under the top-levelblt
directory by adding each file or directory you'd like to exclude on its own line. E.g.,/directorytoexclude excludeme.txt
-
Change which files are gitignored in the artifact by providing your own
deploy.gitignore_file
value in project.yml. See upstream .gitignore for example contents. E.g.,deploy: gitignore_file: ${repo.root}/blt/deploy/.gitignore
-
Execute a custom command after the artifact by providing your own
target-hooks.post-deploy-build.dir
andtarget-hooks.post-deploy-build.command
values in project.yml. E.g.,# Executed after deployment artifact is created. post-deploy-build: dir: ${deploy.dir}/docroot/profiles/contrib/lightning command: npm run install-libraries
You may disable a git hook by setting its value under git.hooks
to false:
git:
hooks:
pre-commit: false
You may use a custom git hook in place of BLT's default git hooks by setting its value under git.hooks
to the directory path containing of the hook. The directory must contain an executable file named after the git hook:
git:
hooks:
pre-commit: ${repo.root}/my-custom-git-hooks
In this example, an executable file named pre-commit
should exist in ${repo.root}/my-custom-git-hooks
.
You should execute blt setup:git-hooks
after modifying these values in order for changes to take effect.
To modify the behavior of the tests:behat target, you may override BLT's behat
configuration.
behat:
config: ${repo.root}/tests/behat/local.yml
profile: local
# The URL of selenium server. Must correspond with setting in behat's yaml config.
selenium:
port: 4444
url: http://127.0.0.1:${behat.selenium.port}/wd/hub
# An array of paths with behat tests that should be executed.
paths:
# - ${docroot}/modules
# - ${docroot}/profiles
- ${repo.root}/tests/behat
tags: '~ajax&&~experimental&&~lightningextension'
extra: ''
# May be selenium or phantomjs.
web-driver: selenium
To modify the behavior of the validate:phpcs target, you may copy phpcs.xml.dist
to phpcs.xml
in your repository root directory and modify the XML. Please see the official PHPCS documentation for more information.
To prevent validation failures on any Twig filters or functions created in custom or contrib module twig.extension
services, add filters
and functions
like so:
validate:
twig:
filters:
- my_filter_1
- my_filter_2
functions:
- my_function_1
- my_function_2