commit | 06a12e561268f67de6a417315944f8e4d05afc0f | [log] [tgz] |
---|---|---|
author | Sasha Smundak <asmundak@google.com> | Fri Jul 15 17:35:51 2016 +0000 |
committer | Yun Peng <pcloudy@google.com> | Mon Jul 18 10:43:29 2016 +0000 |
tree | a9fe559e7f307d0a132c59def9fa309c8710465a | |
parent | 5ea55cbab969820da346d16c4998e957b8c3f60e [diff] |
C++ reimplementation of singlejar tool: first checkin, take two: fix the problem that caused the rollback. *** Original change description *** Automated [] rollback of commit f667aa54f4fcc2c04182de9bc267a7ee469f6445. *** Reason for rollback *** Breaks CI, see, e.g., http://ci.bazel.io/job/bazel-tests/BAZEL_VERSION=HEAD,PLATFORM_NAME=ubuntu_15.10-x86_64/92/console *** Original change description *** C++ reimplementation of singlejar tool: first checkin. -- MOS_MIGRATED_REVID=127554239
{Fast, Correct} - Choose two
Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google‘s software, and thus it has been designed to handle build problems present in Google’s development environment, including:
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.
Find more background about Bazel in our FAQ.