For now all it does is represent the name of the runner and what requirements it has of the build pipeline. Move some package definitions from the runner package set to where it belongs.
6 lines
88 B
Go
6 lines
88 B
Go
package runner
|
|
|
|
type Runner interface {
|
|
String() string
|
|
GetBuildPackages() []string
|
|
}
|