diff --git a/src/test/shell/bazel/starlark_git_repository_test.sh b/src/test/shell/bazel/starlark_git_repository_test.sh index c53f9c9e12d515..42f00b1e0a9079 100755 --- a/src/test/shell/bazel/starlark_git_repository_test.sh +++ b/src/test/shell/bazel/starlark_git_repository_test.sh @@ -314,6 +314,10 @@ EOF # planets has a dependency on targets in the $TEST_TMPDIR/outer_planets Git # repository. function test_new_git_repository_submodules() { + # Temporarily disable on Windows due to https://github.com/bazelbuild/bazel/issues/17040 + if $is_windows; then + return + fi local outer_planets_repo_dir=$TEST_TMPDIR/repos/outer-planets # Create a workspace that clones the outer_planets repository. @@ -372,6 +376,10 @@ EOF } function test_new_git_repository_submodules() { + # Temporarily disable on Windows due to https://github.com/bazelbuild/bazel/issues/17040 + if $is_windows; then + return + fi local outer_planets_repo_dir=$TEST_TMPDIR/repos/outer-planets # Create a workspace that clones the outer_planets repository.