mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
a8921e6e82
* feat(runners): update task status * feat(config): add remote runner flag * feat(runners): kill remote job * feat(runners): update state
18 lines
477 B
Go
18 lines
477 B
Go
package db
|
|
|
|
type RunnerState string
|
|
|
|
//const (
|
|
// RunnerOffline RunnerState = "offline"
|
|
// RunnerActive RunnerState = "active"
|
|
//)
|
|
|
|
type Runner struct {
|
|
ID int `db:"id" json:"-"`
|
|
Token string `db:"token" json:"-"`
|
|
ProjectID *int `db:"project_id" json:"project_id"`
|
|
//State RunnerState `db:"state" json:"state"`
|
|
Webhook string `db:"webhook" json:"webhook"`
|
|
MaxParallelTasks int `db:"max_parallel_tasks" json:"max_parallel_tasks"`
|
|
}
|