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
|
|
|
|
2022-09-03 20:57:32 +08:00
|
|
|
log "github.com/sirupsen/logrus"
|
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-25 18:54:00 +08:00
|
|
|
func (s *Runner) Run(ctx context.Context, task *runnerv1.Task) error {
|
2022-09-03 20:57:32 +08:00
|
|
|
l := log.
|
2022-09-25 18:54:00 +08:00
|
|
|
WithField("task.id", task.Id)
|
2022-08-14 13:29:00 +08:00
|
|
|
l.Info("start running pipeline")
|
2022-09-01 15:09:22 +08:00
|
|
|
|
2022-09-25 18:54:00 +08:00
|
|
|
return NewTask(task.Id, s.Client).Run(ctx, task)
|
2022-08-14 13:29:00 +08:00
|
|
|
}
|