
Buildkite Changelog
What’s new and updated in Buildkite
Updated syntax for using plugins in your pipeline YAML
Posted February 05, 2019 by Harriet
Back in October, Buildkite Agent v3.5.0 included a bug fix to ensure that plugins are always executed in the correct order. In the process of fixing that bug, we've updated our recommended syntax for using plugins to use an array instead of a map, to make it clearer that the plugins are executed in order.
For example, if your pipeline uses the following syntax, we recommend updating it:
steps:
- label: ":shipit:"
plugins:
docker-login#v2.0.1:
username: ci
docker-compose#v2.6.0:
push: app
The new recommended syntax, which works on all versions of the Buildkite Agent, changes the plugin
property to be an array:
steps:
- label: ":shipit:"
plugins:
- docker-login#v2.0.1:
username: ci
- docker-compose#v2.6.0:
push: app
Bugfix