phase1: don't log env on statistics steps
authorThibaut VARÈNE <hacks@slashdirt.org>
Wed, 26 Oct 2022 07:46:22 +0000 (09:46 +0200)
committerPetr Štetiar <ynezz@true.cz>
Mon, 15 May 2023 15:36:01 +0000 (17:36 +0200)
Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
phase1/master.cfg

index e6da9110d9bc556a3fb4b62668548bb82c19ad9c..70e2162b52570e67269692b4f74bb383728fa54d 100644 (file)
@@ -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,