2024-02-08 15:33:22 +00:00
|
|
|
// Copyright 2024 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.
|
|
|
|
|
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
2024-07-17 23:26:35 +00:00
|
|
|
"context"
|
2024-02-08 15:33:22 +00:00
|
|
|
"os"
|
|
|
|
|
2024-05-13 20:58:21 +00:00
|
|
|
// Load config from .env file.
|
2024-02-08 15:33:22 +00:00
|
|
|
_ "github.com/joho/godotenv/autoload"
|
|
|
|
"github.com/rs/zerolog/log"
|
2024-07-17 23:26:35 +00:00
|
|
|
"github.com/urfave/cli/v3"
|
2024-02-08 15:33:22 +00:00
|
|
|
|
|
|
|
backend "go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/types"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/shared/logger"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/shared/utils"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/version"
|
|
|
|
)
|
|
|
|
|
2024-07-17 23:26:35 +00:00
|
|
|
func RunAgent(ctx context.Context, backends []backend.Backend) {
|
|
|
|
app := &cli.Command{}
|
2024-02-08 15:33:22 +00:00
|
|
|
app.Name = "woodpecker-agent"
|
|
|
|
app.Version = version.String()
|
|
|
|
app.Usage = "woodpecker agent"
|
|
|
|
app.Action = runWithRetry(backends)
|
|
|
|
app.Commands = []*cli.Command{
|
|
|
|
{
|
|
|
|
Name: "ping",
|
|
|
|
Usage: "ping the agent",
|
|
|
|
Action: pinger,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
agentFlags := utils.MergeSlices(flags, logger.GlobalLoggerFlags)
|
|
|
|
for _, b := range backends {
|
|
|
|
agentFlags = utils.MergeSlices(agentFlags, b.Flags())
|
|
|
|
}
|
|
|
|
app.Flags = agentFlags
|
|
|
|
|
2024-07-17 23:26:35 +00:00
|
|
|
if err := app.Run(ctx, os.Args); err != nil {
|
2024-02-08 15:33:22 +00:00
|
|
|
log.Fatal().Err(err).Msg("error running agent") //nolint:forbidigo
|
|
|
|
}
|
|
|
|
}
|