commit | a2c60d0594545ec266b23cf0122d664397b69b77 | [log] [tgz] |
---|---|---|
author | Brian Silverman <bsilver16384@gmail.com> | Fri Nov 06 14:28:37 2015 +0000 |
committer | Florian Weikert <fwe@google.com> | Fri Nov 06 16:40:08 2015 +0000 |
tree | 4139165984bff8a0679ab028c0790dcb2f463be0 | |
parent | 619ad608ef1270461aade6608ae5f1371009e4b9 [diff] |
Fix bash completion script location in the Debian package It was ending up installed as /bazel. Also, the documented way of telling pkg_tar not to strip off the prefix didn't work. -- Change-Id: I593d17690526c614697369cab543aff1ba67de0a Reviewed-on: https://bazel-review.googlesource.com/#/c/2222/ MOS_MIGRATED_REVID=107229260
{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.