mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-20 03:46:09 +08:00
17 lines
263 B
Go
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")
|
|
}
|
|
}
|