-
-
Notifications
You must be signed in to change notification settings - Fork 80
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
Refreshing 'Bazel Build Targets' fails when there is a problem in the build graph #198
Comments
this is happening to me as well. every change that I make in the BUILD files makes the targets no longer "refreshable". even after I fix the BUILD files, I have to manually delete the local bazel cache and then I can refresh the targets again |
I've also found the same. If I run
EDIT: I fixed this by adding the |
@derekwisong See #216 |
Refreshing a the test of build targets tries to pull every target in the workspace using
bazelisk query '//...:*' --output=package
. If any target in the graph fails then the targets are unable to refresh.This can be fixed by adding
--keep_going
to the command.The text was updated successfully, but these errors were encountered: