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.
This commit is contained in:
icp 2025-03-07 21:56:12 +05:30 committed by classabbyamp
parent de74742efc
commit 379c3bfe58

View file

@ -63,7 +63,7 @@ do_build() {
do_check() { do_check() {
: ${make_check_target:=./...} : ${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() { do_install() {