mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-11 09:02:22 +00:00
Currently, backend options are parsed in the yaml parser. This has some issues: - backend specific code should be in the backend folders - it is not possible to add backend options for backends added via addons
10 lines
172 B
YAML
10 lines
172 B
YAML
steps:
|
|
build:
|
|
image: golang
|
|
commands:
|
|
- go build
|
|
- go test
|
|
backend_options:
|
|
custom_backend:
|
|
option1: xyz
|
|
option2: [1, 2, 3]
|