2022-05-02 17:02:51 +08:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
|
2022-08-13 22:41:01 +08:00
|
|
|
"gitea.com/gitea/act_runner/client"
|
2022-08-13 14:15:21 +08:00
|
|
|
"gitea.com/gitea/act_runner/engine"
|
2022-08-14 10:34:19 +08:00
|
|
|
"gitea.com/gitea/act_runner/poller"
|
2022-08-14 13:29:00 +08:00
|
|
|
"gitea.com/gitea/act_runner/runtime"
|
2022-08-13 14:15:21 +08:00
|
|
|
|
|
|
|
"github.com/joho/godotenv"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2022-05-02 17:02:51 +08:00
|
|
|
"github.com/spf13/cobra"
|
2022-08-14 13:29:00 +08:00
|
|
|
"golang.org/x/sync/errgroup"
|
2022-05-02 17:02:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func runDaemon(ctx context.Context, input *Input) func(cmd *cobra.Command, args []string) error {
|
|
|
|
return func(cmd *cobra.Command, args []string) error {
|
2022-08-13 14:15:21 +08:00
|
|
|
log.Infoln("Starting runner daemon")
|
|
|
|
|
|
|
|
_ = godotenv.Load(input.envFile)
|
|
|
|
cfg, err := fromEnviron()
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).
|
|
|
|
Fatalln("invalid configuration")
|
|
|
|
}
|
|
|
|
|
|
|
|
initLogging(cfg)
|
|
|
|
|
2022-08-13 14:30:05 +08:00
|
|
|
engine, err := engine.New()
|
2022-08-13 14:15:21 +08:00
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).
|
|
|
|
Fatalln("cannot load the docker engine")
|
|
|
|
}
|
|
|
|
|
|
|
|
count := 0
|
2022-05-02 17:02:51 +08:00
|
|
|
for {
|
2022-08-13 14:15:21 +08:00
|
|
|
err := engine.Ping(ctx)
|
|
|
|
if err == context.Canceled {
|
|
|
|
break
|
|
|
|
}
|
2022-05-02 17:02:51 +08:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
2022-08-13 14:15:21 +08:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).
|
|
|
|
Errorln("cannot ping the docker daemon")
|
|
|
|
count++
|
|
|
|
if count == 5 {
|
|
|
|
log.WithError(err).
|
2022-08-13 14:30:05 +08:00
|
|
|
Fatalf("retry count reached: %d", count)
|
2022-05-02 17:02:51 +08:00
|
|
|
}
|
2022-08-13 14:15:21 +08:00
|
|
|
time.Sleep(time.Second)
|
|
|
|
} else {
|
2022-08-13 22:41:01 +08:00
|
|
|
log.Infoln("successfully pinged the docker daemon")
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cli := client.New(
|
|
|
|
cfg.Client.Address,
|
|
|
|
cfg.Client.Secret,
|
|
|
|
cfg.Client.SkipVerify,
|
2022-08-14 10:59:09 +08:00
|
|
|
client.WithGRPC(cfg.Client.GRPC),
|
|
|
|
client.WithGRPCWeb(cfg.Client.GRPCWeb),
|
2022-08-13 22:41:01 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
for {
|
|
|
|
err := cli.Ping(ctx, cfg.Runner.Name)
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
if ctx.Err() != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).
|
|
|
|
Errorln("cannot ping the remote server")
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
} else {
|
|
|
|
log.Infoln("successfully pinged the remote server")
|
2022-08-13 14:15:21 +08:00
|
|
|
break
|
2022-05-02 17:02:51 +08:00
|
|
|
}
|
|
|
|
}
|
2022-08-13 14:15:21 +08:00
|
|
|
|
2022-08-14 10:34:19 +08:00
|
|
|
var g errgroup.Group
|
|
|
|
|
2022-08-14 13:29:00 +08:00
|
|
|
runner := &runtime.Runner{
|
|
|
|
Client: cli,
|
|
|
|
Machine: cfg.Runner.Name,
|
|
|
|
Environ: cfg.Runner.Environ,
|
|
|
|
}
|
|
|
|
|
|
|
|
poller := poller.New(cli, runner.Run)
|
2022-08-14 10:34:19 +08: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")
|
|
|
|
|
|
|
|
poller.Poll(ctx, cfg.Runner.Capacity)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
err = g.Wait()
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).
|
|
|
|
Errorln("shutting down the server")
|
|
|
|
}
|
|
|
|
return err
|
2022-05-02 17:02:51 +08:00
|
|
|
}
|
|
|
|
}
|