act/pkg/container/executions_environment.go

16 lines
383 B
Go
Raw Normal View History

2022-11-17 05:29:45 +08:00
package container
import "context"
type ExecutionsEnvironment interface {
Container
ToContainerPath(string) string
GetActPath() string
GetPathVariableName() string
DefaultPathVariable() string
JoinPathVariable(...string) string
GetRunnerContext(ctx context.Context) map[string]interface{}
// On windows PATH and Path are the same key
IsEnvironmentCaseInsensitive() bool
2022-11-17 05:29:45 +08:00
}