Files
act_runner/pkg/runner/run_context_other.go
Christopher Homberger b53c54f73d fix last error
2026-02-23 14:09:30 +01:00

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")
}
}