All checks were successful
Pre Release Workflow / set-release-target (push) Successful in 1s
Pre Release Workflow / build (metadata, amd64, linux) (push) Successful in 1m33s
Pre Release Workflow / prerelease (push) Successful in 12s
Pre Release Workflow / build (agent, amd64, linux) (push) Successful in 1m35s
Pre Release Workflow / build (db, amd64, linux) (push) Successful in 1m35s
Pre Release Workflow / build (metacli, amd64, linux) (push) Successful in 1m32s
Pre Release Workflow / upload-scripts (run-dnsmasq-in-netns.sh) (push) Successful in 7s
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
14 lines
219 B
Go
14 lines
219 B
Go
//go:build !linux
|
|
|
|
package qemu
|
|
|
|
import "errors"
|
|
|
|
type Config struct {
|
|
Name, Mac, VolumePath string
|
|
TapID, Memory, CPUs int
|
|
}
|
|
|
|
func Start(_ Config) error {
|
|
return errors.New("vm: not supported on this platform")
|
|
}
|