Remove OpenJDK 9 and 10 http_archives, tools and tests.

These JDK versions have been EOL for a while now and Bazel 3.0 will no longer test that using these JDKs as a host_javabase still works.

Impact:
- This removes eight JDKs from Bazel's built-in `jdk.WORKSPACE` and twelve JDKs from Bazel's own `WORKSPACE` file, which will speed-up `bazel sync` for all users and reduces network traffic and I/O when fetching the required repositories for Bazel's test suite.
- This removes 1404 seconds (8.5%) of test processing time from our Mac CI, speeding up our pre- and postsubmit jobs.

RELNOTES[INC]: Using JDK 9 or 10 as a `--host_javabase` is no longer officially supported. As always, you can use the `@bazel_tools//tools/jdk:toolchain_vanilla` Java toolchain to use older or newer JDKs than what Bazel currently supports.

PiperOrigin-RevId: 295577187
10 files changed
tree: b06cde8ec498bfc2b2fd69d561d9de021b50ca39
  1. .bazelci/
  2. examples/
  3. scripts/
  4. site/
  5. src/
  6. third_party/
  7. tools/
  8. .bazelrc
  9. .gitattributes
  10. .gitignore
  11. AUTHORS
  12. BUILD
  13. CHANGELOG.md
  14. CODEOWNERS
  15. combine_distfiles.py
  16. combine_distfiles_to_tar.sh
  17. compile.sh
  18. CONTRIBUTING.md
  19. CONTRIBUTORS
  20. distdir.bzl
  21. ISSUE_TEMPLATE.md
  22. LICENSE
  23. README.md
  24. WORKSPACE
README.md

Bazel

{Fast, Correct} - Choose two

Build and test software of any size, quickly and reliably.

  • Speed up your builds and tests: Bazel rebuilds only what is necessary. With advanced local and distributed caching, optimized dependency analysis and parallel execution, you get fast and incremental builds.

  • One tool, multiple languages: Build and test Java, C++, Android, iOS, Go, and a wide variety of other language platforms. Bazel runs on Windows, macOS, and Linux.

  • Scalable: Bazel helps you scale your organization, codebase, and continuous integration solution. It handles codebases of any size, in multiple repositories or a huge monorepo.

  • Extensible to your needs: Easily add support for new languages and platforms with Bazel's familiar extension language. Share and re-use language rules written by the growing Bazel community.

Getting Started

Documentation

Contributing to Bazel

See CONTRIBUTING.md

Build status