Files
act_runner/pkg/tart/env_darwin.go
ChristopherHX 677e073448 feat: tart macOS vm's as job container (#33)
adds the tart:// protocol to platform mapping

e.g. `-P macos-14=tart://ghcr.io/cirruslabs/macos-sonoma-base:latest` if you have a mac.

`add-path` is probably broken
2025-01-29 17:27:04 +01:00

19 lines
267 B
Go

package tart
type Env struct {
JobID string
JobImage string
FailureExitCode int
Registry *Registry
}
type Registry struct {
Address string
User string
Password string
}
func (e Env) VirtualMachineID() string {
return e.JobID
}