mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 05:41:12 +00:00
c8411d7f83
Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com>
658 B
658 B
Custom backends
If none of our backends fits your usecase, you can write your own.
Therefore, implement the interface "go.woodpecker-ci.org/woodpecker/woodpecker/v2/pipeline/backend/types".Backend
and
build a custom agent using your backend with this main.go
:
package main
import (
"go.woodpecker-ci.org/woodpecker/v2/cmd/agent/core"
backendTypes "go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/types"
)
func main() {
core.RunAgent([]backendTypes.Backend{
yourBackend,
})
}
It is also possible to use multiple backends, you can select with WOODPECKER_BACKEND
between them.