Skip to content

Commit

Permalink
Fix broken Bazel postsubmit
Browse files Browse the repository at this point in the history
The LRE does not support xcode and thus we can't run tests using cc_* on macOS.

RELNOTES: None
PiperOrigin-RevId: 266888758
  • Loading branch information
buchgr authored and copybara-github committed Sep 3, 2019
1 parent bb26694 commit 737a302
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/test/shell/bazel/remote/remote_execution_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,13 @@ EOF
function test_downloads_minimal_failure() {
# Test that outputs of failing actions are downloaded when using
# --remote_download_minimal
if [[ "$PLATFORM" == "darwin" ]]; then
# TODO(b/37355380): This test is disabled due to RemoteWorker not supporting
# setting SDKROOT and DEVELOPER_DIR appropriately, as is required of
# action executors in order to select the appropriate Xcode toolchain.
return 0
fi

mkdir -p a
cat > a/BUILD <<'EOF'
genrule(
Expand Down

0 comments on commit 737a302

Please sign in to comment.