You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skaffold should track changes of transitive BUILD files.
Actual behavior
There is no tracking of transitive BUILD files currently.
Example: Base image defined in build file base/BUILD and usage of this image by go_image in service/BUILD. Changes of base image do not trigger rebuilds and wrong image is cached/tagged.
Expected behavior
Skaffold should track changes of transitive BUILD files.
Actual behavior
There is no tracking of transitive BUILD files currently.
Example: Base image defined in build file base/BUILD and usage of this image by go_image in service/BUILD. Changes of base image do not trigger rebuilds and wrong image is cached/tagged.
Information
Steps to reproduce the behavior
foo/BUILD
bar/BUILD
Current bazel query:
bazel query "kind('source file', deps('//foo:foo')) union buildfiles('//foo:foo')" --noimplicit_deps --order_output=no --output=label
Output:
Fixed bazel query:
bazel query "kind('source file', deps('//foo:foo')) union buildfiles(deps('//foo:foo'))" --noimplicit_deps --order_output=no --output=label
Output:
The text was updated successfully, but these errors were encountered: