From 93d3a9f6027c2edb70b5edf0239ea00e58bd8ab1 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 25 May 2021 17:21:16 +0200 Subject: pkg/build: fix qemu timeouts for netbsd netbsd.go uses a hacky way to construct manager config that skips of all of our verification/completion logic. As the result the manager config has 0 timeouts and qemu immidiately timeouts. Fill in timeouts. --- pkg/build/netbsd.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg') diff --git a/pkg/build/netbsd.go b/pkg/build/netbsd.go index e3019f2e3..309a90299 100644 --- a/pkg/build/netbsd.go +++ b/pkg/build/netbsd.go @@ -111,6 +111,7 @@ func (ctx netbsd) copyKernelToDisk(targetArch, vmType, outputDir, kernel string) TargetOS: targets.NetBSD, TargetArch: targetArch, TargetVMArch: targetArch, + Timeouts: targets.Get(targets.NetBSD, targetArch).Timeouts(1), }, } // Create a VM pool. -- cgit mrf-deployment