Skip to content

Commit 81ebefc

Browse files
authored
Merge pull request #392 from nix-community/nix-eval-fix
nix-eval-jobs: fix gcroots dir not correctly passed
2 parents ccaecb0 + e2d504f commit 81ebefc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildbot_nix/buildbot_nix/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ async def run(self) -> int:
683683
"accept-flake-config",
684684
"true",
685685
"--gc-roots-dir",
686-
self.drv_gcroots_dir,
686+
str(self.drv_gcroots_dir),
687687
"--force-recurse",
688688
"--check-cache-status",
689689
"--flake",
@@ -1109,6 +1109,7 @@ def nix_eval_config(
11091109
"list",
11101110
# fmt: on
11111111
],
1112+
flunkOnFailure=True,
11121113
# TODO: support other branches?
11131114
doStepIf=lambda c: c.build.getProperty("branch", "")
11141115
== project.default_branch,

0 commit comments

Comments
 (0)