2022-05-02 11:02:51 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-11-15 14:28:07 +01:00
|
|
|
"os"
|
2022-05-02 11:02:51 +02:00
|
|
|
|
2022-08-13 16:41:01 +02:00
|
|
|
"gitea.com/gitea/act_runner/client"
|
2022-10-02 06:33:17 +02:00
|
|
|
"gitea.com/gitea/act_runner/config"
|
2022-08-13 08:15:21 +02:00
|
|
|
"gitea.com/gitea/act_runner/engine"
|
2022-08-14 04:34:19 +02:00
|
|
|
"gitea.com/gitea/act_runner/poller"
|
2022-08-14 07:29:00 +02:00
|
|
|
"gitea.com/gitea/act_runner/runtime"
|
2022-10-14 04:06:52 +02:00
|
|
|
runnerv1 "gitea.com/gitea/proto-go/runner/v1"
|
|
|
|
|
2022-09-25 12:54:00 +02:00
|
|
|
"github.com/bufbuild/connect-go"
|
2022-08-13 08:15:21 +02:00
|
|
|
"github.com/joho/godotenv"
|
2022-11-15 14:28:07 +01:00
|
|
|
"github.com/mattn/go-isatty"
|
2022-08-13 08:15:21 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
2022-05-02 11:02:51 +02:00
|
|
|
"github.com/spf13/cobra"
|
2022-08-14 07:29:00 +02:00
|
|
|
"golang.org/x/sync/errgroup"
|
2022-05-02 11:02:51 +02:00
|
|
|
)
|
|
|
|
|
2022-10-16 17:51:53 +02:00
|
|
|
func runDaemon(ctx context.Context, envFile string) func(cmd *cobra.Command, args []string) error {
|
2022-05-02 11:02:51 +02:00
|
|
|
return func(cmd *cobra.Command, args []string) error {
|
2022-08-13 08:15:21 +02:00
|
|
|
log.Infoln("Starting runner daemon")
|
|
|
|
|
2022-10-16 17:51:53 +02:00
|
|
|
_ = godotenv.Load(envFile)
|
2022-10-02 06:33:17 +02:00
|
|
|
cfg, err := config.FromEnviron()
|
2022-08-13 08:15:21 +02:00
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).
|
|
|
|
Fatalln("invalid configuration")
|
|
|
|
}
|
|
|
|
|
|
|
|
initLogging(cfg)
|
|
|
|
|
2022-10-15 14:03:33 +02:00
|
|
|
// try to connect to docker daemon
|
|
|
|
// if failed, exit with error
|
|
|
|
if err := engine.Start(ctx); err != nil {
|
|
|
|
log.WithError(err).Fatalln("failed to connect docker daemon engine")
|
|
|
|
}
|
|
|
|
|
2022-08-14 04:34:19 +02:00
|
|
|
var g errgroup.Group
|
|
|
|
|
2022-11-15 15:42:41 +01:00
|
|
|
cli := client.New(
|
2022-10-15 14:03:33 +02:00
|
|
|
cfg.Client.Address,
|
|
|
|
client.WithSkipVerify(cfg.Client.SkipVerify),
|
|
|
|
client.WithGRPC(cfg.Client.GRPC),
|
|
|
|
client.WithGRPCWeb(cfg.Client.GRPCWeb),
|
|
|
|
client.WithUUIDHeader(cfg.Runner.UUID),
|
2022-10-28 17:23:19 +02:00
|
|
|
client.WithTokenHeader(cfg.Runner.Token),
|
2022-10-15 14:03:33 +02:00
|
|
|
)
|
|
|
|
|
2022-08-14 07:29:00 +02:00
|
|
|
runner := &runtime.Runner{
|
2022-10-16 17:51:53 +02:00
|
|
|
Client: cli,
|
|
|
|
Machine: cfg.Runner.Name,
|
|
|
|
ForgeInstance: cfg.ForgeInstance,
|
|
|
|
Environ: cfg.Runner.Environ,
|
2022-08-14 07:29:00 +02:00
|
|
|
}
|
|
|
|
|
2022-08-28 08:05:56 +02:00
|
|
|
poller := poller.New(
|
|
|
|
cli,
|
|
|
|
runner.Run,
|
|
|
|
)
|
2022-08-14 04:34:19 +02:00
|
|
|
|
|
|
|
g.Go(func() error {
|
|
|
|
log.WithField("capacity", cfg.Runner.Capacity).
|
|
|
|
WithField("endpoint", cfg.Client.Address).
|
|
|
|
WithField("os", cfg.Platform.OS).
|
|
|
|
WithField("arch", cfg.Platform.Arch).
|
|
|
|
Infoln("polling the remote server")
|
|
|
|
|
2022-10-14 04:06:52 +02:00
|
|
|
// update runner status to idle
|
|
|
|
log.Infoln("update runner status to idle")
|
|
|
|
if _, err := cli.UpdateRunner(
|
|
|
|
context.Background(),
|
|
|
|
connect.NewRequest(&runnerv1.UpdateRunnerRequest{
|
2022-10-16 17:24:06 +02:00
|
|
|
Status: runnerv1.RunnerStatus_RUNNER_STATUS_IDLE,
|
2022-10-14 04:06:52 +02:00
|
|
|
}),
|
|
|
|
); err != nil {
|
2022-11-15 06:38:25 +01:00
|
|
|
// go on, if return err, the program will be stuck
|
|
|
|
log.WithError(err).
|
|
|
|
Errorln("failed to update runner")
|
2022-10-14 04:06:52 +02:00
|
|
|
}
|
|
|
|
|
2022-08-28 08:05:56 +02:00
|
|
|
return poller.Poll(ctx, cfg.Runner.Capacity)
|
2022-08-14 04:34:19 +02:00
|
|
|
})
|
|
|
|
|
2022-10-14 04:06:52 +02:00
|
|
|
g.Go(func() error {
|
2022-11-11 06:51:00 +01:00
|
|
|
// wait all workflows done.
|
|
|
|
poller.Wait()
|
|
|
|
// received the shutdown signal
|
2022-10-14 04:06:52 +02:00
|
|
|
<-ctx.Done()
|
|
|
|
log.Infoln("update runner status to offline")
|
|
|
|
_, err := cli.UpdateRunner(
|
|
|
|
context.Background(),
|
|
|
|
connect.NewRequest(&runnerv1.UpdateRunnerRequest{
|
|
|
|
Status: runnerv1.RunnerStatus_RUNNER_STATUS_OFFLINE,
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
return err
|
|
|
|
})
|
|
|
|
|
2022-08-14 04:34:19 +02:00
|
|
|
err = g.Wait()
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).
|
|
|
|
Errorln("shutting down the server")
|
|
|
|
}
|
|
|
|
return err
|
2022-05-02 11:02:51 +02:00
|
|
|
}
|
|
|
|
}
|
2022-11-15 14:28:07 +01:00
|
|
|
|
|
|
|
// initLogging setup the global logrus logger.
|
|
|
|
func initLogging(cfg config.Config) {
|
|
|
|
isTerm := isatty.IsTerminal(os.Stdout.Fd())
|
|
|
|
log.SetFormatter(&log.TextFormatter{
|
|
|
|
DisableColors: !isTerm,
|
|
|
|
FullTimestamp: true,
|
|
|
|
})
|
|
|
|
|
|
|
|
if cfg.Debug {
|
|
|
|
log.SetLevel(log.DebugLevel)
|
|
|
|
}
|
|
|
|
if cfg.Trace {
|
|
|
|
log.SetLevel(log.TraceLevel)
|
|
|
|
}
|
|
|
|
}
|