2022-08-13 15:41:01 +01:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-08-14 06:29:00 +01:00
|
|
|
|
|
|
|
v1 "gitea.com/gitea/proto/gen/proto/v1"
|
2022-08-13 15:41:01 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// A Client manages communication with the runner.
|
|
|
|
type Client interface {
|
|
|
|
// Ping sends a ping message to the server to test connectivity.
|
|
|
|
Ping(ctx context.Context, machine string) error
|
2022-08-14 06:29:00 +01:00
|
|
|
|
|
|
|
// Request requests the next available build stage for execution.
|
|
|
|
Request(ctx context.Context) (*v1.Stage, error)
|
2022-08-13 15:41:01 +01:00
|
|
|
}
|