-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Script crashes #22
Comments
The issue is probably: def log(drv):
"""Returns the build log of a store path."""
result = run(["nix", "log", "-f.", drv], stdout=PIPE, stderr=PIPE, encoding="utf-8")
if result.returncode != 0:
return None
return result.stdout This can return |
I added a little shim:
With this, I can extract the following error:
|
Hi, thanks for investigating. I think the Feel free to submit a PR to fix this (also see #21 (comment) for a disclaimer -- this is one of those kinks). Depending on your level of motivation you could
|
I tried
nix-bisect
to find a particularly nasty failure with many dependency failures.First try: Try to follow the readme
nixpkgs
cloneSecond try
Ok, I guess I need to specify
bad
first?Does it know now what my good commit is? Let's be sure.
Fine. Let's give it a spin.
It worked a lot (half an hour before spitting out this error).
The text was updated successfully, but these errors were encountered: