mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2024-11-21 20:27:17 +03:00
aa765ea4d0
Signed-off-by: GiteaBot <teabot@gitea.io>
40 lines
863 B
Go
40 lines
863 B
Go
package runtime
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitea.com/gitea/act_runner/client"
|
|
runnerv1 "gitea.com/gitea/proto-go/runner/v1"
|
|
|
|
"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.
|
|
func (s *Runner) Run(ctx context.Context, stage *runnerv1.Stage) error {
|
|
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)
|
|
}
|
|
|
|
func (s *Runner) run(ctx context.Context, stage *runnerv1.Stage) error {
|
|
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
|
|
}
|