tweag / skyscope

A tool for visualising and exploring Bazel Skyframe graphs.
MIT License
55 stars 7 forks source link

Running `bazel info` in wrapper script can cause Bazel to discard action execution nodes #46

Closed benradf closed 1 year ago

benradf commented 1 year ago

(Depending on exactly what flags are set in .bazelrc)

Only the workspace and output_base fields are actually needed from bazel info. The fields that causes the issue are output_path and execution_root, so we can just do bazel info workspace and bazel info output_base instead. See this thread for more information.

benradf commented 1 year ago

Fixed as of 2dfeb51.