From dd7383b441a5df8b2c3d92d793fe78ae22b94f6e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thibaut=20VAR=C3=88NE?= Date: Wed, 26 Oct 2022 09:46:22 +0200 Subject: [PATCH] phase1: don't log env on statistics steps MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Thibaut VARÈNE --- 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, -- 2.30.2