2022-08-14 13:29:00 +08:00
|
|
|
package runtime
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"gitea.com/gitea/act_runner/client"
|
2022-08-17 14:26:58 +08:00
|
|
|
runnerv1 "gitea.com/gitea/proto-go/runner/v1"
|
2022-08-14 13:29:00 +08:00
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Runner runs the pipeline.
|
|
|
|
type Runner struct {
|
|
|
|
Machine string
|
|
|
|
Environ map[string]string
|
|
|
|
Client client.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run runs the pipeline stage.
|
2022-08-17 14:25:14 +08:00
|
|
|
func (s *Runner) Run(ctx context.Context, stage *runnerv1.Stage) error {
|
2022-08-14 13:29:00 +08:00
|
|
|
l := logrus.
|
|
|
|
WithField("stage.build_uuid", stage.BuildUuid).
|
|
|
|
WithField("stage.runner_uuid", stage.RunnerUuid)
|
|
|
|
|
|
|
|
l.Info("stage received")
|
|
|
|
// TODO: Update stage structure
|
|
|
|
|
|
|
|
return s.run(ctx, stage)
|
|
|
|
}
|
|
|
|
|
2022-08-17 14:25:14 +08:00
|
|
|
func (s *Runner) run(ctx context.Context, stage *runnerv1.Stage) error {
|
2022-08-14 13:29:00 +08:00
|
|
|
l := logrus.
|
|
|
|
WithField("stage.build_uuid", stage.BuildUuid).
|
|
|
|
WithField("stage.runner_uuid", stage.RunnerUuid)
|
|
|
|
|
|
|
|
l.Info("start running pipeline")
|
|
|
|
// TODO: docker runner with stage data
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|