commit | 4e79e80e2899fcc0974e8e89227ad7a6fc48ccc1 | [log] [tgz] |
---|---|---|
author | Klaus Aehlig <aehlig@google.com> | Thu Mar 02 17:44:31 2017 +0000 |
committer | Yue Gan <yueg@google.com> | Fri Mar 03 10:36:47 2017 +0000 |
tree | d59c6c10aa1c3f0efd91db1f95cc7de8438f37c3 | |
parent | cddaaa66b9aac7c4ea4772ae2a23b97426d267c2 [diff] |
Post DownloadProgressEvents in ProgressInputStream In this way, the experimental UI will report about the progress of downloads. Fixes #2563. Fixes #1260. -- Change-Id: I034e0f2bc8df0a1f46b28298d3d1fccc8daaaded Reviewed-on: https://cr.bazel.build/9115 PiperOrigin-RevId: 149013682 MOS_MIGRATED_REVID=149013682
{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.