Skip to content

Commit

Permalink
common/build-style/go.sh: disable verbose test output
Browse files Browse the repository at this point in the history
The output with `-v` is often too verbose, making it difficult to
scour the logs, especially in the GitHub actions UI.
  • Loading branch information
icp1994 committed Mar 7, 2025
1 parent fcbb942 commit 6bd88c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/build-style/go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 6bd88c6

Please sign in to comment.