Use host architecture for Linux integration tests

This commit is contained in:
Fedor Korotkov 2026-07-16 11:02:14 -04:00
parent b1c468340c
commit 93fde28cbd
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ func VM(name string) *v1.VM {
if runtime.GOOS == "linux" {
vm.Image = imageconstant.DefaultLinuxImage
vm.OS = v1.OSLinux
vm.Arch = v1.ArchitectureAMD64
vm.Arch = v1.Architecture(runtime.GOARCH)
vm.Runtime = v1.RuntimeVetu
}