Source: golang-github-reviewdog-errorformat
Version: 0.0~git20240608.1d3280e-1
Severity: wishlist
Tags: patch
User: [email protected]
Usertags: nocheck
X-Debbugs-Cc: [email protected]
Hi,
Whilst working on the Reproducible Builds effort [0], we noticed that
golang-github-reviewdog-errorformat could not be built reproducibly.
This because the testsuite generates a series of ".out" files such as
"ansible-lint.out". A patch is attached that deletes these after
running the tests.
[0] https://reproducible-builds.org/
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
--- a/debian/rules 2025-12-10 11:31:37.858420655 -0800
--- b/debian/rules 2025-12-10 12:05:37.404965091 -0800
@@ -5,3 +5,6 @@
%:
dh $@ --builddirectory=_build --buildsystem=golang
+
+execute_after_dh_auto_test:
+ find _build -type f -name '*.out' -delete