As discussed on [discord](https://discord.com/channels/838698813463724034/838698813463724037/1142646908049961001).
23 KiB
Pipeline syntax
The pipeline section defines a list of steps to build, test and deploy your code. Pipeline steps are executed serially, in the order in which they are defined. If a step returns a non-zero exit code, the pipeline immediately aborts and returns a failure status.
Example steps:
steps:
backend:
image: golang
commands:
- go build
- go test
frontend:
image: node
commands:
- npm install
- npm run test
- npm run build
In the above example we define two pipeline steps, frontend
and backend
. The names of these steps are completely arbitrary.
Another way to name a step is by using the name keyword:
steps:
- name: backend
image: golang
commands:
- go build
- go test
- name: frontend
image: node
commands:
- npm install
- npm run test
- npm run build
Keep in mind the name is optional, if not added the steps will be numerated.
Skip Commits
Woodpecker gives the ability to skip individual commits by adding [CI SKIP]
to the commit message. Note this is case-insensitive.
git commit -m "updated README [CI SKIP]"
Steps
Every step of your pipeline executes arbitrary commands inside a specified container. The defined commands are executed serially. The associated commit of a current pipeline run is checked out with git to a workspace which is mounted to every step of the pipeline as the working directory.
steps:
backend:
image: golang
commands:
+ - go build
+ - go test
File changes are incremental
- Woodpecker clones the source code in the beginning pipeline
- Changes to files are persisted through steps as the same volume is mounted to all steps
# .woodpecker.yml
steps:
build:
image: debian
commands:
- echo "test content" > myfile
a-test-step:
image: debian
commands:
- cat myfile
image
Woodpecker pulls the defined image and uses it as environment to execute the pipeline step commands, for plugins and for service containers.
When using the local
backend, the image
entry is used to specify the shell, such as Bash or Fish, that is used to run the commands.
steps:
build:
+ image: golang:1.6
commands:
- go build
- go test
publish:
+ image: plugins/docker
repo: foo/bar
services:
database:
+ image: mysql
Woodpecker supports any valid Docker image from any Docker registry:
image: golang
image: golang:1.7
image: library/golang:1.7
image: index.docker.io/library/golang
image: index.docker.io/library/golang:1.7
Woodpecker does not automatically upgrade container images. Example configuration to always pull the latest image when updates are available:
steps:
build:
image: golang:latest
+ pull: true
Images from private registries
You must provide registry credentials on the UI in order to pull private pipeline images defined in your YAML configuration file.
These credentials are never exposed to your pipeline, which means they cannot be used to push, and are safe to use with pull requests, for example. Pushing to a registry still require setting credentials for the appropriate plugin.
Example configuration using a private image:
steps:
build:
+ image: gcr.io/custom/golang
commands:
- go build
- go test
Woodpecker matches the registry hostname to each image in your YAML. If the hostnames match, the registry credentials are used to authenticate to your registry and pull the image. Note that registry credentials are used by the Woodpecker agent and are never exposed to your build containers.
Example registry hostnames:
- Image
gcr.io/foo/bar
has hostnamegcr.io
- Image
foo/bar
has hostnamedocker.io
- Image
qux.com:8000/foo/bar
has hostnamequx.com:8000
Example registry hostname matching logic:
- Hostname
gcr.io
matches imagegcr.io/foo/bar
- Hostname
docker.io
matchesgolang
- Hostname
docker.io
matcheslibrary/golang
- Hostname
docker.io
matchesbradyrydzewski/golang
- Hostname
docker.io
matchesbradyrydzewski/golang:latest
Global registry support
To make a private registry globally available check the server configuration docs.
GCR registry support
For specific details on configuring access to Google Container Registry, please view the docs here.
commands
Commands of every pipeline step are executed serially as if you would enter them into your local shell.
steps:
backend:
image: golang
commands:
+ - go build
+ - go test
There is no magic here. The above commands are converted to a simple shell script. The commands in the above example are roughly converted to the below script:
#!/bin/sh
set -e
go build
go test
The above shell script is then executed as the container entrypoint. The below docker command is an (incomplete) example of how the script is executed:
docker run --entrypoint=build.sh golang
Please note that only build steps can define commands. You cannot use commands with plugins or services.
environment
Woodpecker provides the ability to pass environment variables to individual pipeline steps.
For more details check the environment docs.
secrets
Woodpecker provides the ability to store named parameters external to the YAML configuration file, in a central secret store. These secrets can be passed to individual steps of the pipeline at runtime.
For more details check the secrets docs.
failure
Some of the pipeline steps may be allowed to fail without causing the whole pipeline to report a failure (e.g., a step executing a linting check). To enable this, add failure: ignore
to your pipeline step. If Woodpecker encounters an error while executing the step, it will report it as failed but still execute the next steps of the pipeline, if any, without affecting the status of the pipeline.
steps:
backend:
image: golang
commands:
- go build
- go test
+ failure: ignore
when
- Conditional Execution
Woodpecker supports defining a list of conditions for a pipeline step by using a when
block. If at least one of the conditions in the when
block evaluate to true the step is executed, otherwise it is skipped. A condition can be a check like:
steps:
slack:
image: plugins/slack
settings:
channel: dev
+ when:
+ - event: pull_request
+ repo: test/test
+ - event: push
+ branch: main
repo
Example conditional execution by repository:
steps:
slack:
image: plugins/slack
settings:
channel: dev
+ when:
+ - repo: test/test
branch
:::note Branch conditions are not applied to tags. :::
Example conditional execution by branch:
steps:
slack:
image: plugins/slack
settings:
channel: dev
+ when:
+ - branch: master
The step now triggers on master, but also if the target branch of a pull request is
master
. Add an event condition to limit it further to pushes on master only.
Execute a step if the branch is master
or develop
:
when:
- branch: [master, develop]
Execute a step if the branch starts with prefix/*
:
when:
- branch: prefix/*
The branch matching is done using doublestar, note that a pattern starting with *
should be put between quotes and a literal /
needs to be escaped. A few examples:
*\\/*
to match patterns with exactly 1/
*\\/**
to match patters with at least 1/
*
to match patterns without/
**
to match everything
Execute a step using custom include and exclude logic:
when:
- branch:
include: [ master, release/* ]
exclude: [ release/1.0.0, release/1.1.* ]
event
Available events: push
, pull_request
, tag
, deployment
, cron
, manual
Execute a step if the build event is a tag
:
when:
- event: tag
Execute a step if the pipeline event is a push
to a specified branch:
when:
- event: push
+ branch: main
Execute a step for multiple events:
when:
- event: [push, tag, deployment]
cron
This filter only applies to cron events and filters based on the name of a cron job.
Make sure to have a event: cron
condition in the when
-filters as well.
when:
- event: cron
cron: sync_* # name of your cron job
ref
The ref
filter compares the git reference against which the pipeline is executed.
This allows you to filter, for example, tags that must start with v:
when:
event: tag
ref: refs/tags/v*
status
There are use cases for executing pipeline steps on failure, such as sending notifications for failed pipelines. Use the status constraint to execute steps even when the pipeline fails:
steps:
slack:
image: plugins/slack
settings:
channel: dev
+ when:
+ - status: [ success, failure ]
platform
:::note This condition should be used in conjunction with a matrix pipeline as a regular pipeline will only executed by a single agent which only has one arch. :::
Execute a step for a specific platform:
when:
- platform: linux/amd64
Execute a step for a specific platform using wildcards:
when:
- platform: [ linux/*, windows/amd64 ]
environment
Execute a step for deployment events matching the target deployment environment:
when:
- environment: production
- event: deployment
matrix
Execute a step for a single matrix permutation:
when:
- matrix:
GO_VERSION: 1.5
REDIS_VERSION: 2.8
instance
Execute a step only on a certain Woodpecker instance matching the specified hostname:
when:
- instance: stage.woodpecker.company.com
path
:::info Path conditions are applied only to push and pull_request events. It is currently only available for GitHub, GitLab and Gitea (version 1.18.0 and newer) :::
Execute a step only when certain files were changed:
when:
- path: "src/*.js"
One can also use glob patterns:
when:
- path: "src/**/*.js"
To match whether the files have been changed or not changed, use include
or exclude
respectively:
when:
- path:
include: [ '.woodpecker/*.yml', '*.ini' ]
exclude: [ '*.md', 'docs/**' ]
ignore_message: "[ALL]"
Hint: Passing a defined ignore-message like [ALL]
inside the commit message will ignore all path conditions.
evaluate
Execute a step only if the provided evaluate expression is equal to true. Both built-in CI_
and custom variables can be used inside the expression.
The expression syntax can be found in the docs of the underlying library.
Run on pushes to the default branch for the repository owner/repo
:
when:
- evaluate: 'CI_PIPELINE_EVENT == "push" && CI_REPO == "owner/repo" && CI_COMMIT_BRANCH == CI_REPO_DEFAULT_BRANCH'
Run on commits created by user woodpecker-ci
:
when:
- evaluate: 'CI_COMMIT_AUTHOR == "woodpecker-ci"'
Skip all commits containing please ignore me
in the commit message:
when:
- evaluate: 'not (CI_COMMIT_MESSAGE contains "please ignore me")'
Run on pull requests with the label deploy
:
when:
- evaluate: 'CI_COMMIT_PULL_REQUEST_LABELS contains "deploy"'
Skip step only if SKIP=true
, run otherwise or if undefined:
when:
- evaluate: 'SKIP != "true"'
group
- Parallel execution
Woodpecker supports parallel step execution for same-machine fan-in and fan-out. Parallel steps are configured using the group
attribute. This instructs the pipeline runner to execute the named group in parallel.
Example parallel configuration:
steps:
backend:
+ group: build
image: golang
commands:
- go build
- go test
frontend:
+ group: build
image: node
commands:
- npm install
- npm run test
- npm run build
publish:
image: plugins/docker
repo: octocat/hello-world
In the above example, the frontend
and backend
steps are executed in parallel. The pipeline runner will not execute the publish
step until the group completes.
volumes
Woodpecker gives the ability to define Docker volumes in the YAML. You can use this parameter to mount files or folders on the host machine into your containers.
For more details check the volumes docs.
detach
Woodpecker gives the ability to detach steps to run them in background until the pipeline finishes.
For more details check the service docs.
directory
Using directory
, you can set a subdirectory of your repository or an absolute path inside the Docker container in which your commands will run.
services
Woodpecker can provide service containers. They can for example be used to run databases or cache containers during the execution of pipeline.
For more details check the services docs.
workspace
The workspace defines the shared volume and working directory shared by all pipeline steps. The default workspace matches the below pattern, based on your repository URL.
/woodpecker/src/github.com/octocat/hello-world
The workspace can be customized using the workspace block in the YAML file:
+workspace:
+ base: /go
+ path: src/github.com/octocat/hello-world
steps:
build:
image: golang:latest
commands:
- go get
- go test
The base attribute defines a shared base volume available to all pipeline steps. This ensures your source code, dependencies and compiled binaries are persisted and shared between steps.
workspace:
+ base: /go
path: src/github.com/octocat/hello-world
steps:
deps:
image: golang:latest
commands:
- go get
- go test
build:
image: node:latest
commands:
- go build
This would be equivalent to the following docker commands:
docker volume create my-named-volume
docker run --volume=my-named-volume:/go golang:latest
docker run --volume=my-named-volume:/go node:latest
The path attribute defines the working directory of your build. This is where your code is cloned and will be the default working directory of every step in your build process. The path must be relative and is combined with your base path.
workspace:
base: /go
+ path: src/github.com/octocat/hello-world
git clone https://github.com/octocat/hello-world \
/go/src/github.com/octocat/hello-world
matrix
Woodpecker has integrated support for matrix builds. Woodpecker executes a separate build task for each combination in the matrix, allowing you to build and test a single commit against multiple configurations.
For more details check the matrix build docs.
platform
:::warning will be deprecated with v1.1.0 in favor of labels. :::
To configure your pipeline to only be executed on an agent with a specific platform, you can use the platform
key.
Have a look at the official go docs for the available platforms. The syntax of the platform is GOOS/GOARCH
like linux/arm64
or linux/amd64
.
Example:
Assuming we have two agents, one arm
and one amd64
. Previously this pipeline would have executed on either agent, as Woodpecker is not fussy about where it runs the pipelines. By setting the following option it will only be executed on an agent with the platform linux/arm64
.
+platform: linux/arm64
steps:
build:
image: golang
commands:
- go build
- go test
labels
You can set labels for your pipeline to select an agent to execute the pipeline on. An agent will pick up and run a pipeline when every label assigned to a pipeline matches the agents labels.
To set additional agent labels check the agent configuration options. Agents will have at least four default labels: platform=agent-os/agent-arch
, hostname=my-agent
, backend=docker
(type of the agent backend) and repo=*
. Agents can use a *
as a wildcard for a label. For example repo=*
will match every repo.
Pipeline labels with an empty value will be ignored.
By default each pipeline has at least the repo=your-user/your-repo-name
label. If you have set the platform attribute for your pipeline it will have a label like platform=your-os/your-arch
as well.
You can add additional labels as a key value map:
+labels:
+ location: europe # only agents with `location=europe` or `location=*` will be used
+ weather: sun
+ hostname: "" # this label will be ignored as it is empty
steps:
build:
image: golang
commands:
- go build
- go test
variables
Woodpecker supports YAML anchors & aliases in the pipeline configuration. These can be used as variables to not repeat yourself.
For more details and examples check the Advanced YAML syntax docs
clone
Woodpecker automatically configures a default clone step if not explicitly defined. When using the local
backend, the plugin-git binary must be on your $PATH
for the default clone step to work. If not, you can still write a manual clone step.
You can manually configure the clone step in your pipeline for customization:
+clone:
+ git:
+ image: woodpeckerci/plugin-git
steps:
build:
image: golang
commands:
- go build
- go test
Example configuration to override depth:
clone:
git:
image: woodpeckerci/plugin-git
+ settings:
+ partial: false
+ depth: 50
Example configuration to use a custom clone plugin:
clone:
git:
+ image: octocat/custom-git-plugin
Example configuration to clone Mercurial repository:
clone:
hg:
+ image: plugins/hg
+ settings:
+ path: bitbucket.org/foo/bar
Git Submodules
To use the credentials that cloned the repository to clone it's submodules, update .gitmodules
to use https
instead of git
:
[submodule "my-module"]
path = my-module
-url = git@github.com:octocat/my-module.git
+url = https://github.com/octocat/my-module.git
To use the ssh git url in .gitmodules
for users cloning with ssh, and also use the https url in Woodpecker, add submodule_override
:
clone:
git:
image: woodpeckerci/plugin-git
settings:
recursive: true
+ submodule_override:
+ my-module: https://github.com/octocat/my-module.git
steps:
...
skip_clone
By default Woodpecker is automatically adding a clone step. This clone step can be configured by the clone property. If you do not need a clone
step at all you can skip it using:
skip_clone: true
when
- Global pipeline conditions
Woodpecker gives the ability to skip whole pipelines (not just steps #when---conditional-execution-1) based on certain conditions by a when
block. If all conditions in the when
block evaluate to true the pipeline is executed, otherwise it is skipped, but treated as successful and other pipelines depending on it will still continue.
repo
Example conditional execution by repository:
+when:
+ repo: test/test
+
steps:
slack:
image: plugins/slack
settings:
channel: dev
branch
:::note Branch conditions are not applied to tags. :::
Example conditional execution by branch:
+when:
+ branch: master
+
steps:
slack:
image: plugins/slack
settings:
channel: dev
The step now triggers on master, but also if the target branch of a pull request is
master
. Add an event condition to limit it further to pushes on master only.
Execute a step if the branch is master
or develop
:
when:
branch: [master, develop]
Execute a step if the branch starts with prefix/*
:
when:
branch: prefix/*
Execute a step using custom include and exclude logic:
when:
branch:
include: [ master, release/* ]
exclude: [ release/1.0.0, release/1.1.* ]
event
Execute a step if the build event is a tag
:
when:
event: tag
Execute a step if the pipeline event is a push
to a specified branch:
when:
event: push
+ branch: main
Execute a step for all non-pull request events:
when:
event: [push, tag, deployment]
Execute a step for all build events:
when:
event: [push, pull_request, tag, deployment]
ref
The ref
filter compares the git reference against which the pipeline is executed.
This allows you to filter, for example, tags that must start with v:
when:
event: tag
ref: refs/tags/v*
environment
Execute a step for deployment events matching the target deployment environment:
when:
environment: production
event: deployment
instance
Execute a step only on a certain Woodpecker instance matching the specified hostname:
when:
instance: stage.woodpecker.company.com
path
:::info Path conditions are applied only to push and pull_request events. It is currently only available for GitHub, GitLab and Gitea (version 1.18.0 and newer) :::
Execute a step only on a pipeline with certain files being changed:
when:
path: "src/*"
You can use glob patterns to match the changed files and specify if the step should run if a file matching that pattern has been changed include
or if some files have not been changed exclude
.
when:
path:
include: [ '.woodpecker/*.yml', '*.ini' ]
exclude: [ '*.md', 'docs/**' ]
ignore_message: "[ALL]"
Hint: Passing a defined ignore-message like [ALL]
inside the commit message will ignore all path conditions.
depends_on
Woodpecker supports to define multiple workflows for a repository. Those workflows will run independent from each other. To depend them on each other you can use the depends_on
keyword.
Privileged mode
Woodpecker gives the ability to configure privileged mode in the YAML. You can use this parameter to launch containers with escalated capabilities.
Privileged mode is only available to trusted repositories and for security reasons should only be used in private environments. See project settings to enable trusted mode.
steps:
build:
image: docker
environment:
- DOCKER_HOST=tcp://docker:2375
commands:
- docker --tls=false ps
services:
docker:
image: docker:dind
commands: dockerd-entrypoint.sh --storage-driver=vfs --tls=false
+ privileged: true