1
0
mirror of https://gitea.com/gitea/act_runner synced 2026-05-06 01:37:57 +02:00

feat: fill default task runner

This commit is contained in:
Gitea
2022-08-23 20:47:14 +08:00
committed by Jason Song
parent c5edbbd004
commit 3281c6637d

View File

@@ -35,6 +35,8 @@ func (s *Runner) run(ctx context.Context, stage *runnerv1.Stage) error {
l.Info("start running pipeline")
// TODO: docker runner with stage data
return nil
// task.Run is blocking, so we need to use goroutine to run it in backgroud
// return task metadata and status to the server
task := NewTask()
return task.Run(ctx)
}