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"
|
|
|
|
)
|
|
|
|
|
2022-08-28 14:05:56 +08:00
|
|
|
// Defines the Resource Kind and Type.
|
|
|
|
const (
|
|
|
|
Kind = "pipeline"
|
|
|
|
Type = "docker"
|
|
|
|
)
|
|
|
|
|
2022-08-14 13:29:00 +08:00
|
|
|
// Runner runs the pipeline.
|
|
|
|
type Runner struct {
|
|
|
|
Machine string
|
|
|
|
Environ map[string]string
|
|
|
|
Client client.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run runs the pipeline stage.
|
2022-09-01 15:09:22 +08:00
|
|
|
func (s *Runner) Run(ctx context.Context, stage *runnerv1.Stage) error {
|
2022-08-14 13:29:00 +08:00
|
|
|
l := logrus.
|
2022-09-01 15:09:22 +08:00
|
|
|
WithField("runner.ID", stage.Id).
|
|
|
|
WithField("runner.BuildID", stage.BuildId)
|
2022-08-14 13:29:00 +08:00
|
|
|
|
|
|
|
l.Info("start running pipeline")
|
2022-09-01 15:09:22 +08:00
|
|
|
|
2022-09-03 15:57:53 +08:00
|
|
|
// TODO: use ctx to transfer usage information
|
|
|
|
return startTask(stage.BuildId, ctx)
|
2022-08-14 13:29:00 +08:00
|
|
|
}
|