mirror of
https://github.com/containers/podman.git
synced 2025-06-28 06:18:57 +08:00
Improvements for machine
clean up ci failures and add appropriate arch,os exclusion tags Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
18
pkg/machine/qemu/options_darwin_amd64.go
Normal file
18
pkg/machine/qemu/options_darwin_amd64.go
Normal file
@ -0,0 +1,18 @@
|
||||
package qemu
|
||||
|
||||
var (
|
||||
QemuCommand = "qemu-system-x86_64"
|
||||
)
|
||||
|
||||
func (v *MachineVM) addArchOptions() []string {
|
||||
opts := []string{"-cpu", "host"}
|
||||
return opts
|
||||
}
|
||||
|
||||
func (v *MachineVM) prepare() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (v *MachineVM) archRemovalFiles() []string {
|
||||
return []string{}
|
||||
}
|
Reference in New Issue
Block a user