mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
3b0263442a
Co-authored-by: laszlocph <laszlo@laszlo.cloud> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: Rynoxx <rynoxx@grid-servers.net>
47 lines
1 KiB
Go
47 lines
1 KiB
Go
package backend
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/backend/docker"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/backend/kubernetes"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/backend/local"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/backend/ssh"
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/backend/types"
|
|
)
|
|
|
|
var engines map[string]types.Engine
|
|
|
|
func Init(ctx context.Context) {
|
|
loadedEngines := []types.Engine{
|
|
docker.New(),
|
|
local.New(),
|
|
ssh.New(),
|
|
kubernetes.New(ctx),
|
|
}
|
|
|
|
engines = make(map[string]types.Engine)
|
|
for _, engine := range loadedEngines {
|
|
engines[engine.Name()] = engine
|
|
}
|
|
}
|
|
|
|
func FindEngine(engineName string) (types.Engine, error) {
|
|
if engineName == "auto-detect" {
|
|
for _, engine := range engines {
|
|
if engine.IsAvailable() {
|
|
return engine, nil
|
|
}
|
|
}
|
|
|
|
return nil, fmt.Errorf("Can't detect an available backend engine")
|
|
}
|
|
|
|
engine, ok := engines[engineName]
|
|
if !ok {
|
|
return nil, fmt.Errorf("Backend engine '%s' not found", engineName)
|
|
}
|
|
|
|
return engine, nil
|
|
}
|