Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 1 | --- |
| 2 | layout: default |
Googler | a0d555f | 2015-04-22 08:32:33 +0000 | [diff] [blame] | 3 | title: FAQ |
Googler | 3fb27ca | 2015-04-30 21:38:04 +0000 | [diff] [blame] | 4 | nav: faq |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 5 | --- |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 6 | |
| 7 | What is Bazel? |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 8 | -------------- |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 9 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 10 | Bazel is a tool that automates software builds and tests. Supported build tasks |
| 11 | include running compilers and linkers to produce executable programs and |
| 12 | libraries, and assembling deployable packages for Android, iOS and other target |
| 13 | environments. Bazel is similar to other tools like Make, Ant, Gradle, Buck, |
| 14 | Pants and Maven. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 15 | |
| 16 | What is special about Bazel? |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 17 | ---------------------------- |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 18 | |
| 19 | Bazel was designed to fit the way software is developed at Google. It |
| 20 | has the following features: |
| 21 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 22 | * Multi-language support: Bazel supports Java, Objective-C and C++ out |
| 23 | of the box, and can be extended to support arbitrary programming |
| 24 | languages. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 25 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 26 | * High-level build language: Projects are described in the BUILD |
| 27 | language, a concise text format that describes a project as sets of |
| 28 | small interconnected libraries, binaries and tests. In contrast, with |
| 29 | tools like Make, you have to describe individual files and compiler |
| 30 | invocations. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 31 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 32 | * Multi-platform support: The same tool and the same BUILD files can |
| 33 | be used to build software for different architectures, and even |
| 34 | different platforms. At Google, we use Bazel to build everything from |
| 35 | server applications running on systems in our data centers to client apps |
| 36 | running on mobile phones. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 37 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 38 | * Reproducibility: In BUILD files, each library, test and binary must |
| 39 | specify its direct dependencies completely. Bazel uses this |
| 40 | dependency information to know what must be rebuilt when you make |
| 41 | changes to a source file, and which tasks can run in parallel. This |
| 42 | means that all builds are incremental and will always produce the |
| 43 | same result. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 44 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 45 | * Scalable: Bazel can handle large builds; at Google, it is common for |
| 46 | a server binary to have 100k source files, and builds where no files |
| 47 | were changed take about ~200ms. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 48 | |
| 49 | |
Laszlo Csomor | 9f62c0b | 2015-03-12 14:31:58 +0000 | [diff] [blame] | 50 | Why doesn't Google use ...? |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 51 | --------------------------- |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 52 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 53 | * Make, Ninja: These tools give very exact control over what commands |
| 54 | get invoked to build files, but it's up to the user to write rules |
| 55 | that are correct. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 56 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 57 | Users interact with Bazel on a higher level. For example, Bazel has |
| 58 | built-in rules for "Java test", "C++ binary", and notions such as |
| 59 | "target platform" and "host platform". These rules have been battle |
| 60 | tested to be foolproof. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 61 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 62 | * Ant and Maven: Ant and Maven are primarily geared toward Java, while |
| 63 | Bazel handles multiple languages. Bazel encourages subdividing |
| 64 | codebases in smaller reusable units, and can rebuild only ones that |
| 65 | need rebuilding. This speeds up development when working with larger |
| 66 | codebases. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 67 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 68 | * Gradle: Bazel configuration files are much more structured than |
| 69 | Gradle's, letting Bazel understand exactly what each action does. |
| 70 | This allows for more parallelism and better reproducibility. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 71 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 72 | * Pants, Buck: Both tools were created and developed by ex-Googlers at |
| 73 | Twitter and Foursquare, and Facebook respectively. They have been modeled |
| 74 | after Bazel, but their feature sets are different, so they aren't viable |
| 75 | alternatives for us. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 76 | |
| 77 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 78 | Where did Bazel come from? |
| 79 | -------------------------- |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 80 | |
| 81 | Bazel is a flavor of the tool that Google uses to build its server |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 82 | software internally. It has expanded to build other software as well, |
| 83 | like mobile apps (iOS, Android) that connect to our servers. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 84 | |
| 85 | Did you rewrite your internal tool as open-source? Is it a fork? |
| 86 | ---------------------------------------------------------------- |
| 87 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 88 | Bazel shares most of its code with the internal tool and its rules |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 89 | are used for millions of builds every day. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 90 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 91 | Why did Google build Bazel? |
| 92 | --------------------------- |
| 93 | |
| 94 | A long time ago, Google built its software using large, generated |
| 95 | Makefiles. These led to slow and unreliable builds, which began to |
| 96 | interfere with our developers' productivity and the company's |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 97 | agility. Bazel was a way to solve these problems. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 98 | |
| 99 | Does Bazel require a build cluster? |
| 100 | ----------------------------------- |
| 101 | |
| 102 | Google's in-house flavor of Bazel does use [build |
| 103 | clusters](http://google-engtools.blogspot.com/2011/09/build-in-cloud-distributing-build-steps.html), |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 104 | so Bazel does have hooks in the code base to plug in a remote build |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 105 | cache or a remote execution system. |
| 106 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 107 | The open source Bazel code runs build operations locally. We believe |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 108 | that this is fast enough for most of our users. |
| 109 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 110 | How does the Google development process work? |
| 111 | ---------------------------------------------- |
| 112 | |
Han-Wen Nienhuys | 361af11 | 2015-03-17 13:00:09 +0000 | [diff] [blame] | 113 | For our server code base, we use the following development workflow: |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 114 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 115 | * All our server code is in a single, gigantic version control |
| 116 | system. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 117 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 118 | * Everybody builds their software with Bazel. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 119 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 120 | * Different teams own different parts of the source tree, and make |
| 121 | their components available as BUILD targets. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 122 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 123 | * Branching is primarily used for managing releases, so everybody |
| 124 | develops their software at the head revision. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 125 | |
Han-Wen Nienhuys | 361af11 | 2015-03-17 13:00:09 +0000 | [diff] [blame] | 126 | Bazel is a cornerstone of this philosophy: since Bazel requires all |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 127 | dependencies to be fully specified, we can predict which programs and |
| 128 | tests are affected by a change, and vet them before submission. |
| 129 | |
| 130 | More background on the development process at Google can be found on |
| 131 | the [eng tools blog](http://google-engtools.blogspot.com/). |
| 132 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 133 | Why are you opening up Bazel? |
| 134 | ----------------------------- |
| 135 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 136 | Building software should be fun and easy. Slow and unpredictable |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 137 | builds take the fun out of programming. |
| 138 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 139 | Why would I want to use Bazel? |
| 140 | ------------------------------ |
| 141 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 142 | * Bazel may give you faster build times because it can recompile only |
| 143 | the files that need to be recompiled. Similarly, it can skip |
| 144 | re-running tests that it knows haven't changed. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 145 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 146 | * Bazel produces deterministic results. This eliminates skew |
| 147 | between incremental and clean builds, laptop and CI system, etc. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 148 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 149 | * Bazel can build different client and server apps with the same tool |
| 150 | from the same workspace. For example, you can change a client/server |
| 151 | protocol in a single commit, and test that the updated mobile app |
| 152 | works with the updated server, building both with the same tool, |
| 153 | reaping all the aforementioned benefits of Bazel. |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 154 | |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 155 | Can I see examples? |
| 156 | ------------------- |
| 157 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 158 | Yes. For a simple example, see: |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 159 | |
Kristina Chodorow | 2b1763a | 2015-09-01 09:15:54 +0000 | [diff] [blame] | 160 | <https://github.com/bazelbuild/bazel/blob/master/examples/cpp/BUILD> |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 161 | |
Neil | 374888c | 2015-11-20 19:04:45 +0000 | [diff] [blame] | 162 | The Bazel source code itself provides a more complex example: |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 163 | |
Neil | 374888c | 2015-11-20 19:04:45 +0000 | [diff] [blame] | 164 | <https://github.com/bazelbuild/bazel/blob/master/src/BUILD> |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 165 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 166 | What is Bazel best at? |
| 167 | ---------------------- |
| 168 | |
| 169 | Bazel shines at building and testing projects with the following properties: |
| 170 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 171 | * Projects with a large codebase |
| 172 | * Projects written in (multiple) compiled languages |
| 173 | * Projects that deploy on multiple platforms |
| 174 | * Projects that have extensive tests |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 175 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 176 | Where can I run Bazel? |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 177 | --------------------------------- |
| 178 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 179 | Currently, Linux and Mac OS X. Porting to other UNIX platforms should be |
| 180 | straightforward, as long as a JDK is available for the platform. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 181 | |
| 182 | What about Windows? |
| 183 | ------------------- |
| 184 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 185 | Due to its UNIX heritage, porting Bazel to Windows is significant work. For |
Han-Wen Nienhuys | ff37d9b | 2015-08-19 12:44:35 +0000 | [diff] [blame] | 186 | example, Bazel uses symlinks extensively, which has varying levels of support |
| 187 | across Windows versions. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 188 | |
Han-Wen Nienhuys | ff37d9b | 2015-08-19 12:44:35 +0000 | [diff] [blame] | 189 | We are currently actively working on improving Windows support, but it's still |
| 190 | ways from being usable. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 191 | |
| 192 | What should I not use Bazel for? |
| 193 | -------------------------------- |
| 194 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 195 | * Bazel tries to be smart about caching. This means that it is not good |
| 196 | for running build operations whose outputs should not be cached. For example, |
| 197 | the following steps should not be run from Bazel: |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 198 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 199 | * A compilation step that fetches data from the internet. |
| 200 | * A test step that connects to the QA instance of your site. |
| 201 | * A deployment step that changes your site's cloud configuration. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 202 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 203 | * Bazel tries to minimize expensive compilation steps. If you are only |
| 204 | using interpreted languages directly, such as JavaScript or Python, |
| 205 | Bazel will likely not interest you. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 206 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 207 | How stable is Bazel's feature set? |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 208 | ---------------------------------- |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 209 | |
| 210 | The core features (C++, Java, and shell rules) have extensive use |
| 211 | inside Google, so they are thoroughly tested and have very little |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 212 | churn. Similarly, we test new versions of Bazel across hundreds of |
| 213 | thousands of targets every day to find regressions, and we release new |
| 214 | versions multiple times every month. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 215 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 216 | In short, except for features marked as experimental, Bazel should Just Work. |
| 217 | Changes to non-experimental rules will be backward compatible. A more detailed |
| 218 | list of feature support statuses can be found in our |
| 219 | [support document](support.html). |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 220 | |
| 221 | How stable is Bazel as a binary? |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 222 | -------------------------------- |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 223 | |
| 224 | Inside Google, we make sure that Bazel crashes are very rare. This |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 225 | should also hold for our open source codebase. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 226 | |
| 227 | How can I start using Bazel? |
| 228 | ---------------------------- |
| 229 | |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 230 | See our [getting started document](docs/getting-started.html). |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 231 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 232 | Doesn't Docker solve the reproducibility problems? |
| 233 | -------------------------------------------------- |
| 234 | |
| 235 | With Docker you can easily create sandboxes with fixed OS releases, |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 236 | for example, Ubuntu 12.04, Fedora 21. This solves the problem of |
| 237 | reproducibility for the system environment -- that is, "which version of |
| 238 | /usr/bin/c++ do I need?" |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 239 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 240 | Docker does not address reproducibility with regard to changes in the |
Daniel Wagner-Hall | 50a1194 | 2015-02-06 18:25:18 +0000 | [diff] [blame] | 241 | source code. Running Make with an imperfectly written Makefile inside a |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 242 | Docker container can still yield unpredictable results. |
| 243 | |
Han-Wen Nienhuys | 361af11 | 2015-03-17 13:00:09 +0000 | [diff] [blame] | 244 | Inside Google, we check tools into source control for reproducibility. |
| 245 | In this way, we can vet changes to tools ("upgrade GCC to 4.6.1") with |
| 246 | the same mechanism as changes to base libraries ("fix bounds check in |
| 247 | OpenSSL"). |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 248 | |
Han-Wen Nienhuys | 29ca242 | 2015-03-19 16:53:35 +0000 | [diff] [blame] | 249 | Can I build binaries for deployment on Docker? |
| 250 | ---------------------------------------------- |
| 251 | |
| 252 | With Bazel, you can build standalone, statically linked binaries in |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 253 | C/C++, and self-contained jar files for Java. These run with few |
| 254 | dependencies on normal UNIX systems, and as such should be simple to |
Han-Wen Nienhuys | 29ca242 | 2015-03-19 16:53:35 +0000 | [diff] [blame] | 255 | install inside a Docker container. |
| 256 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 257 | Bazel has conventions for structuring more complex programs, for example, a |
Han-Wen Nienhuys | 29ca242 | 2015-03-19 16:53:35 +0000 | [diff] [blame] | 258 | Java program that consumes a set of data files, or runs another |
| 259 | program as subprocess. It is possible to package up such environments |
| 260 | as standalone archives, so they can be deployed on different systems, |
Damien Martin-Guillerez | 8f56558 | 2015-07-27 19:39:07 +0000 | [diff] [blame] | 261 | including Docker images. |
Han-Wen Nienhuys | 29ca242 | 2015-03-19 16:53:35 +0000 | [diff] [blame] | 262 | |
Han-Wen Nienhuys | 29ca242 | 2015-03-19 16:53:35 +0000 | [diff] [blame] | 263 | Can I build Docker images with Bazel? |
| 264 | ------------------------------------- |
| 265 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 266 | Yes, you can use our |
Jeff Hodges | 7453175 | 2016-05-19 17:53:01 +0000 | [diff] [blame] | 267 | [Docker rules](http://bazel.io/docs/be/docker.html) |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 268 | to build reproducible Docker images. |
Han-Wen Nienhuys | 29ca242 | 2015-03-19 16:53:35 +0000 | [diff] [blame] | 269 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 270 | Will Bazel make my builds reproducible automatically? |
| 271 | ----------------------------------------------------- |
| 272 | |
| 273 | For Java and C++ binaries, yes, assuming you do not change the |
| 274 | toolchain. If you have build steps that involve custom recipes |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 275 | (for example, executing binaries through a shell script inside a rule), you |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 276 | will need to take some extra care: |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 277 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 278 | * Do not use dependencies that were not declared. Sandboxed |
| 279 | execution (--spawn_strategy=sandboxed, only on Linux) can |
| 280 | help find undeclared dependencies. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 281 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 282 | * Avoid storing timestamps and user-IDs in generated files. ZIP files and |
| 283 | other archives are especially prone to this. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 284 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 285 | * Avoid connecting to the network. Sandboxed execution can help here |
| 286 | too. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 287 | |
Googler | 28711af | 2016-06-24 16:41:23 +0000 | [diff] [blame] | 288 | * Avoid processes that use random numbers, in particular, dictionary |
| 289 | traversal is randomized in many programming languages. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 290 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 291 | Do you have binary releases? |
| 292 | ---------------------------- |
| 293 | |
Damien Martin-Guillerez | b91b994 | 2015-09-21 10:01:26 +0000 | [diff] [blame] | 294 | Yes, you can find the latest release binaries |
| 295 | [here](https://github.com/bazelbuild/bazel/releases/latest). Our release |
| 296 | policy is documented [here](http://bazel.io/support.html). |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 297 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 298 | I use Eclipse/IntelliJ. How does Bazel interoperate with IDEs? |
| 299 | -------------------------------------------------------------- |
| 300 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 301 | We currently have no IDE integration API as such but the iOS rules generate |
| 302 | Xcode projects based on Bazel BUILD targets (see below). |
Googler | 1deaf23 | 2015-03-26 17:35:46 +0000 | [diff] [blame] | 303 | |
| 304 | How does Bazel interact with Xcode? |
| 305 | ----------------------------------- |
| 306 | |
| 307 | Bazel generates Xcode projects that you can use to work with any inputs and |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 308 | dependencies for the target, to build apps from Xcode directly and to deploy to |
| 309 | an iOS simulator and devices. Simply open the project file whose path is printed |
Googler | 1deaf23 | 2015-03-26 17:35:46 +0000 | [diff] [blame] | 310 | by Bazel after building any iOS target. There is no support to invoke Bazel from |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 311 | Xcode (for example to re-generate generated sources such as Objective-C files |
| 312 | based on protos), nor to open Xcode from Bazel directly. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 313 | |
| 314 | I use Jenkins/CircleCI/TravisCI. How does Bazel interoperate with CI systems? |
| 315 | ----------------------------------------------------------------------------- |
| 316 | |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 317 | Bazel returns a non-zero exit code if the build or test invocation |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 318 | fails, and this should be enough for basic CI integration. Since |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 319 | Bazel does not need clean builds for correctness, the CI system should not |
| 320 | be configured to clean before starting a build/test run. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 321 | |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 322 | Further details on exit codes are in the [User Manual](docs/bazel-user-manual.html). |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 323 | |
| 324 | What future features can we expect in Bazel? |
| 325 | -------------------------------------------- |
| 326 | |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 327 | Our initial goal is to work on Google's internal use-cases. This |
| 328 | includes Google's principal languages (C++, Java, Go) and major |
| 329 | platforms (Linux, Android, iOS). For practical reasons, not all of |
Damien Martin-Guillerez | 4862756 | 2015-03-13 17:07:11 +0000 | [diff] [blame] | 330 | these are currently open-sourced. For more details see our |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 331 | [roadmap](roadmap.html). |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 332 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 333 | What about Python? |
| 334 | ------------------ |
| 335 | |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 336 | It is possible to write Python rules as extensions (see below). See |
| 337 | the following files for an example of generating self-contained zip |
| 338 | files for python: |
Han-Wen Nienhuys | 89ab4a1 | 2015-02-06 18:49:56 +0000 | [diff] [blame] | 339 | |
Kristina Chodorow | 2b1763a | 2015-09-01 09:15:54 +0000 | [diff] [blame] | 340 | <https://github.com/bazelbuild/bazel/blob/master/tools/build_rules/py_rules.bzl>\\ |
| 341 | <https://github.com/bazelbuild/bazel/tree/master/examples/py> |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 342 | |
Damien Martin-Guillerez | 9cfa90f | 2015-09-30 13:26:34 +0000 | [diff] [blame] | 343 | We have opened up a subset of our internal Python rules, so they |
| 344 | can be used as helper scripts as part of a build. |
Han-Wen Nienhuys | 361af11 | 2015-03-17 13:00:09 +0000 | [diff] [blame] | 345 | |
Han-Wen Nienhuys | ff37d9b | 2015-08-19 12:44:35 +0000 | [diff] [blame] | 346 | Simplistic support for PEX-style binaries is at |
Kristina Chodorow | 2b1763a | 2015-09-01 09:15:54 +0000 | [diff] [blame] | 347 | [here](https://github.com/bazelbuild/bazel/blob/master/tools/build_rules/py_rules.bzl). |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 348 | |
| 349 | |
Han-Wen Nienhuys | d35ebee | 2015-03-24 20:00:01 +0000 | [diff] [blame] | 350 | What about Go? |
| 351 | -------------- |
| 352 | |
Han-Wen Nienhuys | d35ebee | 2015-03-24 20:00:01 +0000 | [diff] [blame] | 353 | If your codebase is 100% Go, the `go` tool has excellent support for |
| 354 | building and testing, and Bazel will not bring you much benefit. |
| 355 | |
Han-Wen Nienhuys | ff37d9b | 2015-08-19 12:44:35 +0000 | [diff] [blame] | 356 | The server code written in Go at Google is built with Bazel. However, the rules |
| 357 | that accomplish this are rather complex due to their interactions with our C++ |
| 358 | libraries, and are incompatible with the conventions of the `go` tool. We are |
| 359 | working on improving this situation. |
Han-Wen Nienhuys | d35ebee | 2015-03-24 20:00:01 +0000 | [diff] [blame] | 360 | |
Damien Martin-Guillerez | 9cfa90f | 2015-09-30 13:26:34 +0000 | [diff] [blame] | 361 | Can I use Bazel for my [INSERT LANGUAGE HERE] project? |
| 362 | ------------------------------------------------------ |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 363 | |
Damien Martin-Guillerez | 9cfa90f | 2015-09-30 13:26:34 +0000 | [diff] [blame] | 364 | We have an extension mechanism called Skylark that allows you to add new rules |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 365 | without recompiling Bazel. |
| 366 | |
David Chen | c23d661 | 2015-11-02 22:56:13 +0000 | [diff] [blame] | 367 | For documentation: see [here](/docs/skylark/index.html). We have support for |
Damien Martin-Guillerez | 9cfa90f | 2015-09-30 13:26:34 +0000 | [diff] [blame] | 368 | several languages that use that extension mechanism, see our |
David Chen | c23d661 | 2015-11-02 22:56:13 +0000 | [diff] [blame] | 369 | [build encyclopedia](/docs/be/overview.html) for the full |
Damien Martin-Guillerez | 9cfa90f | 2015-09-30 13:26:34 +0000 | [diff] [blame] | 370 | list of supported languages. |
Han-Wen Nienhuys | ff37d9b | 2015-08-19 12:44:35 +0000 | [diff] [blame] | 371 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 372 | I need more functionality. Can I add rules that are compiled into Bazel? |
| 373 | ------------------------------------------------------------------------ |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 374 | |
| 375 | If our extension mechanism is insufficient for your use case, email |
Laszlo Csomor | d9b2b86 | 2015-03-25 12:01:43 +0000 | [diff] [blame] | 376 | the mailing list for advice: <bazel-discuss@googlegroups.com>. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 377 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 378 | Can I contribute to the Bazel code base? |
| 379 | ---------------------------------------- |
| 380 | |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 381 | See our [contribution guidelines](contributing.html). |
Han-Wen Nienhuys | 0354933 | 2015-02-20 13:21:24 +0000 | [diff] [blame] | 382 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 383 | Why isn't all development done in the open? |
| 384 | ------------------------------------------- |
| 385 | |
| 386 | We still have to refactor the interfaces between the public code in |
| 387 | Bazel and our internal extensions frequently. This makes it hard to do |
Kristina Chodorow | 974b208 | 2015-03-31 14:49:30 +0000 | [diff] [blame] | 388 | much development in the open. See our [governance plan](governance.html) |
Damien Martin-Guillerez | 4862756 | 2015-03-13 17:07:11 +0000 | [diff] [blame] | 389 | for more details. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 390 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 391 | How do I contact the team? |
| 392 | -------------------------- |
| 393 | |
Laszlo Csomor | d9b2b86 | 2015-03-25 12:01:43 +0000 | [diff] [blame] | 394 | We are reachable at <bazel-discuss@googlegroups.com>. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 395 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 396 | Where do I report bugs? |
| 397 | ----------------------- |
| 398 | |
Googler | a1a5303 | 2015-08-31 20:07:23 +0000 | [diff] [blame] | 399 | Send an e-mail to <bazel-discuss@googlegroups.com> or file a bug |
Kristina Chodorow | 2b1763a | 2015-09-01 09:15:54 +0000 | [diff] [blame] | 400 | [on GitHub](https://github.com/bazelbuild/bazel/issues). |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 401 | |
| 402 | |
| 403 | |
| 404 | What's up with the word "Blaze" in the codebase? |
| 405 | ------------------------------------------------ |
| 406 | |
Googler | bedbc44 | 2015-03-18 21:52:09 +0000 | [diff] [blame] | 407 | This is an internal name for the tool. Please refer to Bazel as |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 408 | Bazel. |
| 409 | |
| 410 | |
| 411 | Why do other Google projects (Android, Chrome) use other build tools? |
| 412 | --------------------------------------------------------------------- |
| 413 | |
| 414 | Until now, Bazel was not available externally, so open source projects |
| 415 | such as Chromium, Android, etc. could not use it. In addition, lack of |
| 416 | Windows support is a problem for building Windows applications, such |
| 417 | as Chrome. |
| 418 | |
| 419 | |
| 420 | How do you pronounce "Bazel"? |
| 421 | ----------------------------- |
| 422 | |
| 423 | The same way as "basil" (the herb) in US English: "BAY-zel". It rhymes with |
| 424 | "hazel". IPA: /ˈbeɪzˌəl/ |