Skip to content

Commit

Permalink
Make Bazel's IntelliJ project file more accessible for new developers.
Browse files Browse the repository at this point in the history
This disables the parts of the build that require an Android SDK / NDK and also two shell tests that currently cause the build to fail on macOS.

This should cause the project file to just work out of the box on most developer machines. Experienced developers can manually modify the project file and enable these tests if they need them.

PiperOrigin-RevId: 399402189
  • Loading branch information
philwo authored and copybara-github committed Sep 28, 2021
1 parent 5530e95 commit a569400
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/ij.bazelproject
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,11 @@ targets:
//src/test/...
//src/tools/remote/...
//src/tools/starlark/...
# These tests require the Android SDK and enabling it in our WORKSPACE file.
-//src/test/java/com/google/devtools/build/android/...
-//src/test/shell/bazel/android/...
# These tests cause the build to fail on macOS:
# https://github.com/bazelbuild/bazel/issues/13636
-//src/test/shell/bazel:all_tests
-//src/test/shell/bazel:stardoc_deps
-//src/test/shell/bazel:stardoc_deps_test

0 comments on commit a569400

Please sign in to comment.