1
1
mirror of https://github.com/go-gitea/gitea synced 2025-12-07 13:28:25 +00:00

chore(runner): update to latest proto format.

Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi.Wu
2022-10-10 13:58:47 +08:00
committed by Jason Song
parent f355188e12
commit 4dd135580f
6 changed files with 56 additions and 111 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ type Filter struct {
// Scheduler schedules Build stages for execution.
type Scheduler interface {
// Schedule schedules the stage for execution.
Schedule(context.Context, *runnerv1.Stage) error
Schedule(context.Context, *runnerv1.Task) error
// Request requests the next stage scheduled for execution.
Request(context.Context, Filter) (*runnerv1.Stage, error)
Request(context.Context, Filter) (*runnerv1.Task, error)
}