commit | 56f94b6d2a685858372393c414a1d9cad74e6e91 | [log] [tgz] |
---|---|---|
author | Yun Peng <pcloudy@google.com> | Mon Jul 25 08:26:14 2016 +0000 |
committer | Damien Martin-Guillerez <dmarting@google.com> | Mon Jul 25 11:41:31 2016 +0000 |
tree | 9db2a5230f00c3ec84d05d9d2fe81d2fe87745ea | |
parent | b669406789dd452161875d407d0ce6a3502de5f6 [diff] |
Fixed ConvertersTest on Windows Recently, a new java test is added into Bazel, but failing on Windows because using the wrong path separator. This change fixs it. -- Change-Id: Ib73abac9c22b1d21180f76c13358a1173fde863c Reviewed-on: https://bazel-review.googlesource.com/#/c/4131 MOS_MIGRATED_REVID=128331068
{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.