ci: preserve Bazel arguments on Windows

This commit is contained in:
Adam Perry
2026-06-09 20:11:35 +00:00
parent 4b672e9b1b
commit 301a7e7277
7 changed files with 15 additions and 15 deletions

View File

@@ -41,7 +41,7 @@ read_query_labels() {
query_stdout="$(mktemp)"
query_stderr="$(mktemp)"
if ! ./.github/scripts/run_bazel_query_ci.py \
if ! MSYS2_ARG_CONV_EXCL='*' ./.github/scripts/run_bazel_query_ci.py \
--keep_going \
--output=label \
-- "$query" >"$query_stdout" 2>"$query_stderr"; then
@@ -72,7 +72,7 @@ if [[ "${RUNNER_OS:-}" == "Windows" ]]; then
fi
fi
./.github/scripts/run_bazel_ci.py \
MSYS2_ARG_CONV_EXCL='*' ./.github/scripts/run_bazel_ci.py \
-- \
build \
"${bazel_lint_args[@]}" \