act_runner/pkg/runner/run_context_other.go

17 lines
266 B
Go

//go:build !darwin
package runner
import (
"context"
"errors"
"gitea.com/gitea/act_runner/pkg/common"
)
func (rc *RunContext) startTartEnvironment() common.Executor {
return func(_ context.Context) error {
return errors.New("you need macOS for tart")
}
}