add --norun_validations to bazel build action am: 658a4da53b

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2285613

Change-Id: I6ad7d6283203adfc33484989cbcd7b023904fafe
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Sam Delmerico
2022-11-10 01:32:52 +00:00
committed by Automerger Merge Worker

View File

@@ -571,7 +571,9 @@ func (r *builtinBazelRunner) createBazelCommand(paths *bazelPaths, runName bazel
// Suppress noise
"--ui_event_filters=-INFO",
"--noshow_progress"}
"--noshow_progress",
"--norun_validations",
}
cmdFlags = append(cmdFlags, extraFlags...)
bazelCmd := exec.Command(paths.bazelPath, cmdFlags...)