From 93fde28cbd728c2d26b407a8ae602922333ffd1c Mon Sep 17 00:00:00 2001 From: Fedor Korotkov Date: Thu, 16 Jul 2026 11:02:14 -0400 Subject: [PATCH] Use host architecture for Linux integration tests --- internal/tests/platformdependent/platformdependent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tests/platformdependent/platformdependent.go b/internal/tests/platformdependent/platformdependent.go index d9fb4d2..6646e68 100644 --- a/internal/tests/platformdependent/platformdependent.go +++ b/internal/tests/platformdependent/platformdependent.go @@ -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 }