From: Thibaut VARÈNE Date: Wed, 26 Oct 2022 07:46:22 +0000 (+0200) Subject: phase1: don't log env on statistics steps X-Git-Tag: v2~21 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=dd7383b441a5df8b2c3d92d793fe78ae22b94f6e;p=buildbot.git phase1: don't log env on statistics steps Signed-off-by: Thibaut VARÈNE --- 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,