1

By default bazel produces UUID per invocation.

Some of the tools we're using use this Id to link their entities to the specific bazel invocation.

Is there a bazel flag to force our own Id instead of bazel's? I looked in bazel official docs and couldn't find one

orshachar
  • 4,837
  • 14
  • 45
  • 68

1 Answers1

2

You can pass --invocation_id=MY_ID to any Bazel command to override the invocation id.

Benjamin Peterson
  • 19,297
  • 6
  • 32
  • 39