commit | bffec60d65d908ed9fd138f8c7a73613dd4f654e | [log] [tgz] |
---|---|---|
author | Klaus Aehlig <aehlig@google.com> | Thu Feb 25 09:27:48 2016 +0000 |
committer | Philipp Wollermann <philwo@google.com> | Thu Feb 25 14:15:53 2016 +0000 |
tree | a7bf027ee46f79528102390815e4e97cd2beb45b | |
parent | ea5d36a194f17605fcc23c364740fafc36f5ee5c [diff] |
Add a state tracker and show a progress bar Add a state tracking class that is capable of keeping track of the internal state of the computation. Use it to provide a status bar at the lower end of the terminal. -- Change-Id: I39c17a80a238b3bc0d94527652b56a793f580d02 Reviewed-on: https://bazel-review.googlesource.com/#/c/3014 MOS_MIGRATED_REVID=115538418
{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.