Google开源的构建工具:Bazel

jopen 9年前

Bazel是Google开源的构建工具,能够快速和可靠地构建代码。它用于构建Google的大部分软件,解决出现在谷歌开发环境的构建问题。具体包括:

  • A massive, shared code repository, in which all software is built from source. Bazel has been built for speed, using both caching and parallelism to achieve this. Bazel is critical to Google's ability to continue to scale its software development practices as the company grows.

  • An emphasis on automated testing and releases. Bazel has been built for correctness and reproducibility, meaning that a build performed on a continuous build machine or in a release pipeline will generate bitwise-identical outputs to those generated on a developer's machine.

  • Language and platform diversity. Bazel's architecture is general enough to support many different programming languages within Google, and can be used to build both client and server software targeting multiple architectures from the same underlying codebase.

项目主页:http://www.open-open.com/lib/view/home/1427254687777