Skip to content

Commit ff29be6

Browse files
committed
remove unnecessary environment logging and enable lazy logfiles
For some commands, we don't expect any output
1 parent 22d00da commit ff29be6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

buildbot_nix/buildbot_nix/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,7 @@ def nix_eval_config(
10571057
method="clean",
10581058
submodules=True,
10591059
haltOnFailure=True,
1060+
logEnviron=False,
10601061
),
10611062
)
10621063
drv_gcroots_dir = util.Interpolate(
@@ -1088,6 +1089,7 @@ def nix_eval_config(
10881089
"-rf",
10891090
drv_gcroots_dir,
10901091
],
1092+
logEnviron=False,
10911093
),
10921094
)
10931095
factory.addStep(
@@ -1191,6 +1193,7 @@ def nix_build_steps(
11911193
steps.ShellCommand(
11921194
name="Delete temporary gcroots",
11931195
command=["rm", "-f", util.Interpolate("result-%(prop:attr)s")],
1196+
logEnviron=False,
11941197
),
11951198
]
11961199

@@ -1383,6 +1386,7 @@ def nix_register_gcroot_config(
13831386
"-r",
13841387
util.Property("out_path"),
13851388
],
1389+
logEnviron=False,
13861390
),
13871391
)
13881392

0 commit comments

Comments
 (0)