Files
act_runner/pkg/runner/run_context_other.go
Christopher Homberger 3413919161 update import path
2026-02-22 20:54:58 +01:00

17 lines
263 B
Go

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