Merge "Improve bazel action status mnemonics"

This commit is contained in:
Christopher Parsons 2022-04-25 20:57:17 +00:00 committed by Gerrit Code Review
commit be9b9deef9

View file

@ -853,7 +853,8 @@ func (c *bazelSingleton) GenerateBuildActions(ctx SingletonContext) {
// build statement have later timestamps than the outputs. // build statement have later timestamps than the outputs.
rule.Restat() rule.Restat()
rule.Build(fmt.Sprintf("bazel %d", index), buildStatement.Mnemonic) desc := fmt.Sprintf("%s: %s", buildStatement.Mnemonic, buildStatement.OutputPaths)
rule.Build(fmt.Sprintf("bazel %d", index), desc)
} }
} }