mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-16 13:36:33 +00:00
22 lines
539 B
Go
22 lines
539 B
Go
|
package docker
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/mapstructure"
|
||
|
|
||
|
backend "go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/types"
|
||
|
)
|
||
|
|
||
|
// BackendOptions defines all the advanced options for the docker backend.
|
||
|
type BackendOptions struct {
|
||
|
User string `mapstructure:"user"`
|
||
|
}
|
||
|
|
||
|
func parseBackendOptions(step *backend.Step) (BackendOptions, error) {
|
||
|
var result BackendOptions
|
||
|
if step == nil || step.BackendOptions == nil {
|
||
|
return result, nil
|
||
|
}
|
||
|
err := mapstructure.Decode(step.BackendOptions[EngineName], &result)
|
||
|
return result, err
|
||
|
}
|