description = "Reporting disk usage",
command=["df", "-h", "."],
env={'LC_ALL': 'C'},
+ logEnviron = False,
haltOnFailure = False,
flunkOnFailure = False,
warnOnFailure = False,
description = "Reporting estimated file space usage",
command=["du", "-sh", "."],
env={'LC_ALL': 'C'},
+ logEnviron = False,
haltOnFailure = False,
flunkOnFailure = False,
warnOnFailure = False,
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,