This orb is a merger of CircleCI's path-filtering and continuation orbs. It enables engineers to create configs under .circleci/
that only run when there are code changes in coinciding directory paths. Directory-targeted dynamically-executed pipelines offer engineers reduced execution time, and by extension, reduced CI costs.
This orb is based on a published example of advanced configuration with continuations from CircleCI.
See my article on Medium about dynamic continuations for a simple introduction to using this orb.
For users familiar with GitHub actions, this orb is analogous to the paths-filter action.
Get up-and-running with dynamically continued pipelines in these 4 steps:
-
Add this orb, a
continue
job to your CI config (.circleci/config.yml
), and thesetup
keyword, such assetup: true orbs: dynamic: bjd2385/dynamic-continuation@<version> workflows: on-commit: jobs: - dynamic/continue: base-revision: main context: circleci
Note: pipeline config files under
.circleci/
are automatically detected by default (cf.auto-detect
in the documentation). -
Enable setup workflows in your project under Advanced Settings.
-
The
circleci
context in your organization must have two environment variables set for the orb to reference, includingCIRCLE_ORGANIZATION
(in my case, this is set tobjd2385
), andCIRCLE_TOKEN
, which contains your CircleCI API token.
-
Move workflows to their new configs in
.circleci/<config-name>.yml
. Configs should be complete and pass acircleci config validate
-check.
The orb will automatically detect and run a workflow (we'll call it <module>
) if any of the following conditions are met.
- If
.circleci/<module>.yml
changes (this is configurable, enabled by default). - If changes have been detected within the
<module>/
's directory on your branch against the repository's default branch (defaults tomain
). See below on how to filter out CI runs from specific changed files. - If, following merge to the default branch, there are changes to
.circleci/<module>.yml
or under<module>/
, when diffing against the former commit (you must perform a merge commit for this to work properly).
These conditions can be overridden, and all workflows forced to run, if the force-all
parameter is set to true
on the continue
job.
Show
If you have a directory layout
.circleci/config.yml
terraform/
scripts/
src/
with the addition of this orb, a user could define targeted configs
.circleci/config.yml
.circleci/terraform.yml # targets changes under the 'terraform/' directory
.circleci/scripts.yml # targets changes under the 'scripts/' directory
.circleci/src.yml # targets changes under the 'src/' directory
terraform/
scripts/
src/
The dynamic/continue
workflow would look like
setup: true
orbs:
dynamic: bjd2385/dynamic-continuation@<version>
workflows:
on-commit:
jobs:
- dynamic/continue:
context: circleci
modules: |
/terraform
/scripts
/src
Once again, the workflows will only execute if any code changes are introduced to the containing "module".
For example: if no changes are made on your branch within the terraform/
directory, the .circleci/terraform.yml
CI config will not be executed.
Show
Let's build off of the directory layout above, but add some environments.
.circleci/config.yml
terraform/
development/
production/
staging/
scripts/
src/
pkg1/
pkg2/
We may write further targeted configs
.circleci/config.yml
.circleci/terraform.development.yml # target specific changes under 'terraform/development/'
.circleci/terraform.production.yml # target specific changes under 'terraform/production/'
.circleci/terraform.staging.yml # target specific changes under 'terraform/staging/'
.circleci/scripts.yml
.circleci/src.pkg1.yml # target specific changes under 'src/pkg1/'
.circleci/src.pkg2.yml # target specific changes under 'src/pkg2/'
with a corresponding dynamic/continue
workflow in our standard config.yml
setup: true
orbs:
dynamic: bjd2385/dynamic-continuation@<version>
workflows:
on-commit:
jobs:
- dynamic/continue:
context: circleci
modules: |
/terraform/development
/terraform/production
/terraform/staging
/scripts
/src/pkg1
/src/pkg2
Note that the filenames denote additional directory structure with dots .
, whereas our modules may contain dots .
or slashes /
. Thus, the following list of modules is also valid, albeit potentially harder to follow.
modules: |
terraform.development
terraform.production
terraform.staging
scripts
src.pkg1
src.pkg2
Show
At times, there may be files that change in modules that should not cause workflows to run. These could include, as an example, updated markdown or README-like files.
To solve this problem, the orb has the ability to read an optional .gitignore
-like filter on each module, named .circleci/<module>.ignore
, to prevent detected changed files on your PR from enabling workflows.
Show
Starting with the same directory layout as above, we could add .gitignore
-like files
.circleci/config.yml
.circleci/terraform.yml
.cirlceci/terraform.ignore # optionally ignore changes under 'terraform/' directory
.circleci/scripts.yml
.cirlceci/scripts.ignore # optionally ignore changes under 'scripts/' directory
.circleci/src.yml
.cirlceci/src.ignore # optionally ignore changes under 'src/' directory
terraform/
scripts/
src/
These files are automatically referenced, and do not need to be explicitly specified, with a job as
workflows:
on-commit:
jobs:
- dynamic/continue:
context: circleci
# auto-detect: true
or, exactly the same as above.
Show
We can create additional pipeline file change dependencies throughout the repo within the same *.ignore
-files. For example, suppose we have a subdirectory scripts/terraform/
, and we want changes to files under this subdirectory to enable the pipeline defined in .circleci/terraform.yml
; we can add
!scripts/terraform/*
to .circleci/terraform.ignore
, as described in the Git documentation.
Show
It is possible to run a workflow targeting the root of a repository's directory structure, offering overlapping workflows and more flexibility on file changes when paired with the above strategies. We can accomplish this by specifying .
or /
as a module. For example,
workflows:
on-commit:
jobs:
- dynamic/continue:
context: circleci
auto-detect: true
root-config: app # Defaults to 'app.yml' and 'app.ignore' under .circleci/, should the orb detect a '.'- or '/'-root module
Note that this requires you define an app.yml
(though this root config's name is configurable), at minimum, under .circleci/
, for the orb to process.
Standard CircleCI config validation pre-commit hooks will only validate the default config at .circleci/config.yml
. Please use this project's pre-commit hook to validate any additional configs you've created.
Append the following to your .pre-commit-config.yaml
-
- repo: https://github.com/bjd2385/dynamic-continuation-orb
rev: v<version>
hooks:
- id: circleci-config-validate
You must have the circleci
CLI installed.
This orb has been developed in unpacked form. You may view its packed source with
yarn orb:pack # creates a file 'orb.yml'
Validate an orb definition with
yarn orb:validate
When you're done with development, you may clean up the packed source with
yarn orb:clean
This repository uses pre-commit
to uphold certain code styling and standards. You may install the hooks listed in .pre-commit-config.yaml
with
yarn install:pre-commit-hooks