From 4cb8e094b965373a18528a1608daf8eaa89bbec5 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Mon, 6 Oct 2025 15:18:46 +0200 Subject: [PATCH] conv to string --- build/ci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci.go b/build/ci.go index 5b2e1d98f7..fb5b2e6f11 100644 --- a/build/ci.go +++ b/build/ci.go @@ -321,7 +321,7 @@ func doTest(cmdline []string) { // Test a single package at a time. CI builders are slow // and some tests run into timeouts under load. - gotest.Args = append(gotest.Args, "-p", *threads) + gotest.Args = append(gotest.Args, "-p", fmt.Sprintf("%d", *threads)) if *coverage { gotest.Args = append(gotest.Args, "-covermode=atomic", "-cover") }