Skip to content

Commit

Permalink
Disable test_new_git_repository_submodules in starlark_git_repository…
Browse files Browse the repository at this point in the history
…_test

Due to #17040

PiperOrigin-RevId: 495878182
Change-Id: I69107cfd1bbc2468e62ac9804ca4a18fda87fa1b
  • Loading branch information
meteorcloudy authored and hvadehra committed Feb 14, 2023
1 parent 0a63e2f commit 9c3dda3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/test/shell/bazel/starlark_git_repository_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 9c3dda3

Please sign in to comment.