commit | 9822151a2ab0574b3d7a884f623b6b260258cd6b | [log] [tgz] |
---|---|---|
author | Kush Chakraborty <kush@google.com> | Thu Feb 16 19:39:08 2017 +0000 |
committer | Dmitry Lomov <dslomov@google.com> | Fri Feb 17 14:52:57 2017 +0000 |
tree | cc046b918bacd520930bad7261e7554e0cfca830 | |
parent | b6e2bf13478454ee88dd1de1ca31007d23a7a0d6 [diff] |
Automated [] rollback of commit 53b10eabb02480111510281b776db524df490a29. *** Reason for rollback *** Rolling forward after fixing Mac tests, and adding coverage to Kokoro. *** Original change description *** Automated [] rollback of commit d8eec343d238129ce8b5146c4177d207a6b3683b. *** Reason for rollback *** These tests break on Mac: http://ci.bazel.io/job/bazel-tests/BAZEL_VERSION=HEAD,PLATFORM_NAME=darwin-x86_64/561/console E.g.: ERROR: /Users/ci/workspace/bazel-tests/BAZEL_VERSION/HEAD/PLATFORM_NAME/darwin-x86_64/src/java_tools/junitrunner/javatests/com/google/testing/junit/runner/BUILD:64:1: Couldn't build file src/java_tools/junitrunner/javatests/com/google/testing/junit/runner/junit4_testbridge_integration_test.runfi... *** ROLLBACK_OF=147587929 -- PiperOrigin-RevId: 147746587 MOS_MIGRATED_REVID=147746587
{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.