[buildbot] phase1: don't log env on statistics steps

LEDE Commits lede-commits at lists.infradead.org
Mon May 15 08:39:34 PDT 2023


ynezz pushed a commit to buildbot.git, branch master:
https://git.openwrt.org/dd7383b441a5df8b2c3d92d793fe78ae22b94f6e

commit dd7383b441a5df8b2c3d92d793fe78ae22b94f6e
Author: Thibaut VARÈNE <hacks at slashdirt.org>
AuthorDate: Wed Oct 26 09:46:22 2022 +0200

    phase1: don't log env on statistics steps
    
    Signed-off-by: Thibaut VARÈNE <hacks at slashdirt.org>
---
 phase1/master.cfg | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/phase1/master.cfg b/phase1/master.cfg
index e6da911..70e2162 100644
--- a/phase1/master.cfg
+++ b/phase1/master.cfg
@@ -1137,6 +1137,7 @@ for target in targets:
 		description = "Reporting disk usage",
 		command=["df", "-h", "."],
 		env={'LC_ALL': 'C'},
+		logEnviron = False,
 		haltOnFailure = False,
 		flunkOnFailure = False,
 		warnOnFailure = False,
@@ -1148,6 +1149,7 @@ for target in targets:
 		description = "Reporting estimated file space usage",
 		command=["du", "-sh", "."],
 		env={'LC_ALL': 'C'},
+		logEnviron = False,
 		haltOnFailure = False,
 		flunkOnFailure = False,
 		warnOnFailure = False,
@@ -1159,6 +1161,7 @@ for target in targets:
 		description = "Reporting ccache stats",
 		command=["ccache", "-s"],
 		env = MakeEnv(overrides={ 'PATH': ["${PATH}", "./staging_dir/host/bin"] }),
+		logEnviron = False,
 		want_stderr = False,
 		haltOnFailure = False,
 		flunkOnFailure = False,




More information about the lede-commits mailing list