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
fix: correct Bazel command syntax for --keep_going flag
The --keep_going flag was placed after the -- separator, causing Bazel
to interpret it as a target '//:-keep_going' instead of a command flag.
Fixed both Linux and macOS CI jobs:
- Move --keep_going before the -- separator
- bazel build --keep_going -- [targets...] [exclusions...]
This allows CI to continue building other targets even if some fail,
ensuring our hermetic Go toolchain validation can complete successfully
even if unrelated components have issues.
0 commit comments