From 379c3bfe58958a86dded0d21b35d8c0b165347e8 Mon Sep 17 00:00:00 2001 From: icp Date: Fri, 7 Mar 2025 21:56:12 +0530 Subject: [PATCH] common/build-style/go.sh: disable verbose test output The output with `-v` is often too verbose, making it difficult to scour the logs, especially in the GitHub actions UI. --- common/build-style/go.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-style/go.sh b/common/build-style/go.sh index 2a6305d959b..33a5dcf3ee8 100644 --- a/common/build-style/go.sh +++ b/common/build-style/go.sh @@ -63,7 +63,7 @@ do_build() { do_check() { : ${make_check_target:=./...} - ${make_check_pre} go test -p "$XBPS_MAKEJOBS" -v -tags "${go_build_tags}" -ldflags "${go_ldflags}" ${make_check_args} ${make_check_target} + ${make_check_pre} go test -p "$XBPS_MAKEJOBS" -tags "${go_build_tags}" -ldflags "${go_ldflags}" ${make_check_args} ${make_check_target} } do_install() {