commit | 3caacf17fadfe6ce491565e0113c7d8bb13b07e5 | [log] [tgz] |
---|---|---|
author | Kristina Chodorow <kchodorow@google.com> | Tue May 17 15:43:33 2016 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Tue May 17 16:19:53 2016 +0000 |
tree | bdd6d4e263730d8521c7aaa0b8c787bda6a9d4d1 | |
parent | 5ec6a258d41ef7c2174eb0e0c83ed0fbb7376286 [diff] |
Support top-level packages in pkg_tar Previously, _short_path_dirname would take a short path like "libfoo.jar", rfind would return -1, sp[:-1] would return "libfoo.ja", and then _dest_path would strip that prefix off of "libfoo.jar", leaving just "r". Also added some unit tests for these functions. Fixes #1253. -- MOS_MIGRATED_REVID=122527723
{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.