2023-08-10 09:06:00 +00:00
|
|
|
// Copyright 2023 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-03-05 07:56:08 +00:00
|
|
|
package backend
|
|
|
|
|
2018-04-01 18:34:01 +00:00
|
|
|
import (
|
2022-09-05 04:01:14 +00:00
|
|
|
"context"
|
2021-11-26 02:34:48 +00:00
|
|
|
"fmt"
|
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/types"
|
2021-11-26 02:34:48 +00:00
|
|
|
)
|
|
|
|
|
2024-02-08 23:04:43 +00:00
|
|
|
func FindBackend(ctx context.Context, backends []types.Backend, backendName string) (types.Backend, error) {
|
2023-12-14 18:20:47 +00:00
|
|
|
if backendName == "auto-detect" {
|
|
|
|
for _, engine := range backends {
|
2023-03-19 19:24:43 +00:00
|
|
|
if engine.IsAvailable(ctx) {
|
2021-11-26 02:34:48 +00:00
|
|
|
return engine, nil
|
|
|
|
}
|
|
|
|
}
|
2021-10-02 08:25:26 +00:00
|
|
|
|
2023-03-19 19:24:43 +00:00
|
|
|
return nil, fmt.Errorf("can't detect an available backend engine")
|
2021-11-26 02:34:48 +00:00
|
|
|
}
|
2021-10-02 08:25:26 +00:00
|
|
|
|
2024-02-08 23:04:43 +00:00
|
|
|
for _, engine := range backends {
|
|
|
|
if engine.Name() == backendName {
|
|
|
|
return engine, nil
|
|
|
|
}
|
2021-11-26 02:34:48 +00:00
|
|
|
}
|
2021-10-02 08:25:26 +00:00
|
|
|
|
2024-02-08 23:04:43 +00:00
|
|
|
return nil, fmt.Errorf("backend engine '%s' not found", backendName)
|
2017-03-05 07:56:08 +00:00
|
|
|
}
|