-
-
Notifications
You must be signed in to change notification settings - Fork 198
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
Broken dependency 'chain' when a target in the middle of the chain fails the build #641
Comments
Repro:
|
See also: One way I see to solve this is when a target fails the build, we could emit a See related: |
This is roughly the area of interest: See this comment too: |
I was just diagnosing a build where there was a long chain of targets. One of the 'internal' targets errors out, stopping the build. Here is a simplified diagram
In the log viewer, I can easily see the results of targets
A
,B
, andC
, including a nice link betweenC
andB
(andB
andA
) that shows the dependency relationships. However, the final result of my investigation was thatD
should not have been called at all, but the log viewer didn't (or wasn't able) to show be whyC
was triggered (and so on, whyD
was triggered), because the error atC
stopped the rest of the build processing.Does this information exist today? If so, how should/could it be displayed?
The text was updated successfully, but these errors were encountered: