Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 1 | = Gerrit Code Review - Building with Bazel |
| 2 | |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 3 | [[installation]] |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 4 | == Installation |
| 5 | |
David Pursehouse | 9276890 | 2018-03-08 20:52:37 +0900 | [diff] [blame] | 6 | You need to use Python (2 or 3), Java 8, and Node.js for building gerrit. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 7 | |
| 8 | You can install Bazel from the bazel.io: |
| 9 | https://www.bazel.io/versions/master/docs/install.html |
| 10 | |
| 11 | |
| 12 | [[build]] |
| 13 | == Building on the Command Line |
| 14 | |
| 15 | === Gerrit Development WAR File |
| 16 | |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 17 | To build the Gerrit web application that includes the GWT UI and the |
| 18 | PolyGerrit UI: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 19 | |
| 20 | ---- |
| 21 | bazel build gerrit |
| 22 | ---- |
| 23 | |
David Ostrovsky | fdbfcad | 2016-11-15 06:35:29 -0800 | [diff] [blame] | 24 | [NOTE] |
| 25 | PolyGerrit UI may require additional tools (such as npm). Please read |
| 26 | the polygerrit-ui/README.md for more info. |
| 27 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 28 | The output executable WAR will be placed in: |
| 29 | |
| 30 | ---- |
| 31 | bazel-bin/gerrit.war |
| 32 | ---- |
| 33 | |
Edwin Kempin | 976dc0b | 2016-11-14 16:34:50 -0800 | [diff] [blame] | 34 | [[release]] |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 35 | === Gerrit Release WAR File |
| 36 | |
| 37 | To build the Gerrit web application that includes the GWT UI, the |
| 38 | PolyGerrit UI and documentation: |
| 39 | |
| 40 | ---- |
| 41 | bazel build release |
| 42 | ---- |
| 43 | |
| 44 | The output executable WAR will be placed in: |
| 45 | |
| 46 | ---- |
| 47 | bazel-bin/release.war |
| 48 | ---- |
| 49 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 50 | === Headless Mode |
| 51 | |
| 52 | To build Gerrit in headless mode, i.e. without the GWT Web UI: |
| 53 | |
| 54 | ---- |
| 55 | bazel build headless |
| 56 | ---- |
| 57 | |
| 58 | The output executable WAR will be placed in: |
| 59 | |
| 60 | ---- |
Edwin Kempin | 03eaa9a | 2016-11-14 15:45:51 -0800 | [diff] [blame] | 61 | bazel-bin/headless.war |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 62 | ---- |
| 63 | |
| 64 | === Extension and Plugin API JAR Files |
| 65 | |
| 66 | To build the extension, plugin and GWT API JAR files: |
| 67 | |
| 68 | ---- |
David Ostrovsky | 26f8da8 | 2016-12-24 09:29:33 +0100 | [diff] [blame] | 69 | bazel build api |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 70 | ---- |
| 71 | |
David Ostrovsky | 26f8da8 | 2016-12-24 09:29:33 +0100 | [diff] [blame] | 72 | The output archive that contains Java binaries, Java sources and |
| 73 | Java docs will be placed in: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 74 | |
| 75 | ---- |
David Ostrovsky | 26f8da8 | 2016-12-24 09:29:33 +0100 | [diff] [blame] | 76 | bazel-genfiles/api.zip |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 77 | ---- |
| 78 | |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 79 | Install {extension,plugin,gwt}-api to the local maven repository: |
| 80 | |
| 81 | ---- |
Edwin Kempin | d3bb302 | 2017-01-24 11:28:34 +0100 | [diff] [blame] | 82 | tools/maven/api.sh install |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 83 | ---- |
| 84 | |
| 85 | Install gerrit.war to the local maven repository: |
| 86 | |
| 87 | ---- |
Edwin Kempin | d3bb302 | 2017-01-24 11:28:34 +0100 | [diff] [blame] | 88 | tools/maven/api.sh war_install |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 89 | ---- |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 90 | |
| 91 | === Plugins |
| 92 | |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 93 | ---- |
| 94 | bazel build plugins:core |
| 95 | ---- |
| 96 | |
| 97 | The output JAR files for individual plugins will be placed in: |
| 98 | |
| 99 | ---- |
Edwin Kempin | 7e43407 | 2016-11-14 16:25:11 -0800 | [diff] [blame] | 100 | bazel-genfiles/plugins/<name>/<name>.jar |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 101 | ---- |
| 102 | |
| 103 | The JAR files will also be packaged in: |
| 104 | |
| 105 | ---- |
| 106 | bazel-genfiles/plugins/core.zip |
| 107 | ---- |
| 108 | |
| 109 | To build a specific plugin: |
| 110 | |
| 111 | ---- |
Edwin Kempin | 1ed86c7 | 2016-11-14 16:28:22 -0800 | [diff] [blame] | 112 | bazel build plugins/<name> |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 113 | ---- |
| 114 | |
| 115 | The output JAR file will be be placed in: |
| 116 | |
| 117 | ---- |
Edwin Kempin | 1ed86c7 | 2016-11-14 16:28:22 -0800 | [diff] [blame] | 118 | bazel-genfiles/plugins/<name>/<name>.jar |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 119 | ---- |
| 120 | |
| 121 | Note that when building an individual plugin, the `core.zip` package |
| 122 | is not regenerated. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 123 | |
David Ostrovsky | 08fca6a | 2018-08-26 15:53:01 +0200 | [diff] [blame] | 124 | To build with all Error Prone warnings activated, run: |
| 125 | |
| 126 | ---- |
| 127 | bazel build --java_toolchain //tools:error_prone_warnings_toolchain //... |
| 128 | ---- |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 129 | |
Han-Wen Nienhuys | 8ba8abe | 2016-10-25 15:54:28 +0200 | [diff] [blame] | 130 | |
| 131 | [[IDEs]] |
| 132 | == Using an IDE. |
| 133 | |
| 134 | === IntelliJ |
| 135 | |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 136 | The Gerrit build works with Bazel's link:https://ij.bazel.io[IntelliJ plugin]. |
| 137 | Please follow the instructions on <<dev-intellij#,IntelliJ Setup>>. |
David Ostrovsky | c69f360 | 2016-11-13 08:01:08 -0800 | [diff] [blame] | 138 | |
| 139 | === Eclipse |
| 140 | |
| 141 | ==== Generating the Eclipse Project |
| 142 | |
| 143 | Create the Eclipse project: |
| 144 | |
| 145 | ---- |
David Pursehouse | 7e43d1d | 2017-01-24 08:45:16 +0900 | [diff] [blame] | 146 | tools/eclipse/project.py |
David Ostrovsky | c69f360 | 2016-11-13 08:01:08 -0800 | [diff] [blame] | 147 | ---- |
| 148 | |
| 149 | and then follow the link:dev-eclipse.html#setup[setup instructions]. |
| 150 | |
| 151 | ==== Refreshing the Classpath |
| 152 | |
| 153 | If an updated classpath is needed, the Eclipse project can be |
| 154 | refreshed and missing dependency JARs can be downloaded by running |
David Pursehouse | 7e43d1d | 2017-01-24 08:45:16 +0900 | [diff] [blame] | 155 | `project.py` again. For IntelliJ, you need to click the `Sync Project |
Changcheng Xiao | 31ac98e | 2016-12-30 08:43:35 +0100 | [diff] [blame] | 156 | with BUILD Files` button of link:https://ij.bazel.io[IntelliJ plugin]. |
David Ostrovsky | c69f360 | 2016-11-13 08:01:08 -0800 | [diff] [blame] | 157 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 158 | [[documentation]] |
| 159 | === Documentation |
| 160 | |
David Ostrovsky | 9413ff8 | 2016-10-25 00:02:17 +0200 | [diff] [blame] | 161 | To build only the documentation for testing or static hosting: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 162 | |
David Ostrovsky | 9413ff8 | 2016-10-25 00:02:17 +0200 | [diff] [blame] | 163 | ---- |
| 164 | bazel build Documentation:searchfree |
| 165 | ---- |
| 166 | |
| 167 | The html files will be bundled into `searchfree.zip` in this location: |
| 168 | |
| 169 | ---- |
| 170 | bazel-bin/Documentation/searchfree.zip |
| 171 | ---- |
| 172 | |
| 173 | To build the executable WAR with the documentation included: |
| 174 | |
| 175 | ---- |
| 176 | bazel build withdocs |
| 177 | ---- |
| 178 | |
| 179 | The WAR file will be placed in: |
| 180 | |
| 181 | ---- |
| 182 | bazel-bin/withdocs.war |
| 183 | ---- |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 184 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 185 | [[tests]] |
| 186 | == Running Unit Tests |
| 187 | |
| 188 | ---- |
| 189 | bazel test --build_tests_only //... |
| 190 | ---- |
| 191 | |
| 192 | Debugging tests: |
| 193 | |
| 194 | ---- |
Edwin Kempin | d31903c | 2016-11-14 17:01:44 -0800 | [diff] [blame] | 195 | bazel test --test_output=streamed --test_filter=com.gerrit.TestClass.testMethod testTarget |
| 196 | ---- |
| 197 | |
| 198 | Debug test example: |
| 199 | |
| 200 | ---- |
| 201 | bazel test --test_output=streamed --test_filter=com.google.gerrit.acceptance.api.change.ChangeIT.getAmbiguous //gerrit-acceptance-tests/src/test/java/com/google/gerrit/acceptance/api/change:api_change |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 202 | ---- |
| 203 | |
| 204 | To run a specific test group, e.g. the rest-account test group: |
| 205 | |
| 206 | ---- |
Edwin Kempin | 93c7c48 | 2016-11-14 17:04:30 -0800 | [diff] [blame] | 207 | bazel test //gerrit-acceptance-tests/src/test/java/com/google/gerrit/acceptance/rest/account:rest_account |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 208 | ---- |
| 209 | |
David Ostrovsky | b14577d | 2017-03-22 08:39:47 +0100 | [diff] [blame] | 210 | To run the tests against NoteDb backend with write |
| 211 | to NoteDb, but not read from it: |
| 212 | |
| 213 | ---- |
| 214 | bazel test --test_env=GERRIT_NOTEDB=WRITE //... |
| 215 | ---- |
| 216 | |
| 217 | Write and read from NoteDb: |
David Ostrovsky | f8f1e4a | 2016-11-15 17:35:59 -0800 | [diff] [blame] | 218 | |
| 219 | ---- |
| 220 | bazel test --test_env=GERRIT_NOTEDB=READ_WRITE //... |
| 221 | ---- |
| 222 | |
David Ostrovsky | b14577d | 2017-03-22 08:39:47 +0100 | [diff] [blame] | 223 | Primary storage NoteDb: |
| 224 | |
| 225 | ---- |
| 226 | bazel test --test_env=GERRIT_NOTEDB=PRIMARY //... |
| 227 | ---- |
| 228 | |
| 229 | Primary storage NoteDb and ReviewDb disabled: |
| 230 | |
| 231 | ---- |
| 232 | bazel test --test_env=GERRIT_NOTEDB=DISABLE_CHANGE_REVIEW_DB //... |
| 233 | ---- |
| 234 | |
Patrick Hiesel | 244ff8c | 2016-12-22 11:40:23 +0100 | [diff] [blame] | 235 | To run only tests that do not use SSH: |
| 236 | |
| 237 | ---- |
| 238 | bazel test --test_env=GERRIT_USE_SSH=NO //... |
| 239 | ---- |
| 240 | |
Edwin Kempin | 2e8e96c | 2017-02-10 11:52:01 +0100 | [diff] [blame] | 241 | To exclude tests that have been marked as flaky: |
| 242 | |
| 243 | ---- |
| 244 | bazel test --test_tag_filters=-flaky //... |
| 245 | ---- |
| 246 | |
David Pursehouse | 7e18f1a | 2018-05-26 17:40:30 +0900 | [diff] [blame] | 247 | To exclude tests that require a Docker host: |
| 248 | |
| 249 | ---- |
| 250 | bazel test --test_tag_filters=-docker //... |
| 251 | ---- |
| 252 | |
Edwin Kempin | 2e8e96c | 2017-02-10 11:52:01 +0100 | [diff] [blame] | 253 | To ignore cached test results: |
| 254 | |
| 255 | ---- |
| 256 | bazel test --cache_test_results=NO //... |
| 257 | ---- |
| 258 | |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 259 | To run one or more specific groups of tests: |
| 260 | |
| 261 | ---- |
Jacek Centkowski | 1c41c41 | 2017-02-23 06:49:25 +0000 | [diff] [blame] | 262 | bazel test --test_tag_filters=api,git //... |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 263 | ---- |
| 264 | |
| 265 | The following values are currently supported for the group name: |
| 266 | |
| 267 | * annotation |
| 268 | * api |
David Pursehouse | 0223c0f | 2018-06-19 20:44:42 +0900 | [diff] [blame] | 269 | * docker |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 270 | * edit |
David Pursehouse | 0223c0f | 2018-06-19 20:44:42 +0900 | [diff] [blame] | 271 | * elastic |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 272 | * git |
| 273 | * notedb |
| 274 | * pgm |
| 275 | * rest |
| 276 | * server |
| 277 | * ssh |
| 278 | |
David Pursehouse | 564b29a | 2018-05-30 07:49:02 +0900 | [diff] [blame] | 279 | [[elasticsearch]] |
| 280 | === Elasticsearch |
| 281 | |
David Pursehouse | b04ae61 | 2018-06-19 20:34:36 +0900 | [diff] [blame] | 282 | Successfully running the Elasticsearch tests requires Docker, and |
| 283 | may require setting the local |
David Pursehouse | 564b29a | 2018-05-30 07:49:02 +0900 | [diff] [blame] | 284 | link:https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html[virtual memory]. |
| 285 | |
David Pursehouse | b04ae61 | 2018-06-19 20:34:36 +0900 | [diff] [blame] | 286 | If Docker is not available, the Elasticsearch tests will be skipped. |
| 287 | Note that Bazel currently does not show |
| 288 | link:https://github.com/bazelbuild/bazel/issues/3476[the skipped tests]. |
David Pursehouse | 564b29a | 2018-05-30 07:49:02 +0900 | [diff] [blame] | 289 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 290 | == Dependencies |
| 291 | |
Han-Wen Nienhuys | 314fb11 | 2016-11-14 10:04:02 -0800 | [diff] [blame] | 292 | Dependency JARs are normally downloaded as needed, but you can |
| 293 | download everything upfront. This is useful to enable |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 294 | subsequent builds to run without network access: |
| 295 | |
| 296 | ---- |
Han-Wen Nienhuys | 314fb11 | 2016-11-14 10:04:02 -0800 | [diff] [blame] | 297 | bazel fetch //... |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 298 | ---- |
| 299 | |
| 300 | When downloading from behind a proxy (which is common in some corporate |
| 301 | environments), it might be necessary to explicitly specify the proxy that |
| 302 | is then used by `curl`: |
| 303 | |
| 304 | ---- |
| 305 | export http_proxy=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port> |
| 306 | ---- |
| 307 | |
David Ostrovsky | c0f6d4d | 2017-01-20 08:30:07 +0100 | [diff] [blame] | 308 | Redirection to local mirrors of Maven Central and the Gerrit storage |
| 309 | bucket is supported by defining specific properties in |
| 310 | `local.properties`, a file that is not tracked by Git: |
| 311 | |
| 312 | ---- |
| 313 | echo download.GERRIT = http://nexus.my-company.com/ >>local.properties |
| 314 | echo download.MAVEN_CENTRAL = http://nexus.my-company.com/ >>local.properties |
| 315 | ---- |
| 316 | |
| 317 | The `local.properties` file may be placed in the root of the gerrit repository |
| 318 | being built, or in `~/.gerritcodereview/`. The file in the root of the gerrit |
| 319 | repository has precedence. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 320 | |
| 321 | == Building against unpublished Maven JARs |
| 322 | |
| 323 | To build against unpublished Maven JARs, like gwtorm or PrologCafe, the custom |
| 324 | JARs must be installed in the local Maven repository (`mvn clean install`) and |
| 325 | `maven_jar()` must be updated to point to the `MAVEN_LOCAL` Maven repository for |
| 326 | that artifact: |
| 327 | |
| 328 | [source,python] |
| 329 | ---- |
| 330 | maven_jar( |
| 331 | name = 'gwtorm', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 332 | artifact = 'gwtorm:gwtorm:42', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 333 | repository = MAVEN_LOCAL, |
| 334 | ) |
| 335 | ---- |
| 336 | |
| 337 | == Building against artifacts from custom Maven repositories |
| 338 | |
| 339 | To build against custom Maven repositories, two modes of operations are |
| 340 | supported: with rewrite in local.properties and without. |
| 341 | |
| 342 | Without rewrite the URL of custom Maven repository can be directly passed |
| 343 | to the maven_jar() function: |
| 344 | |
| 345 | [source,python] |
| 346 | ---- |
| 347 | GERRIT_FORGE = 'http://gerritforge.com/snapshot' |
| 348 | |
| 349 | maven_jar( |
| 350 | name = 'gitblit', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 351 | artifact = 'com.gitblit:gitblit:1.4.0', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 352 | sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 353 | repository = GERRIT_FORGE, |
| 354 | ) |
| 355 | ---- |
| 356 | |
| 357 | When the custom URL has to be rewritten, then the same logic as with Gerrit |
| 358 | known Maven repository is used: Repo name must be defined that matches an entry |
| 359 | in local.properties file: |
| 360 | |
| 361 | ---- |
| 362 | download.GERRIT_FORGE = http://my.company.mirror/gerrit-forge |
| 363 | ---- |
| 364 | |
| 365 | And corresponding WORKSPACE excerpt: |
| 366 | |
| 367 | [source,python] |
| 368 | ---- |
| 369 | GERRIT_FORGE = 'GERRIT_FORGE:' |
| 370 | |
| 371 | maven_jar( |
| 372 | name = 'gitblit', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 373 | artifact = 'com.gitblit:gitblit:1.4.0', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 374 | sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 375 | repository = GERRIT_FORGE, |
| 376 | ) |
| 377 | ---- |
| 378 | |
David Ostrovsky | e51b745 | 2016-11-06 18:07:10 +0100 | [diff] [blame] | 379 | [[consume-jgit-from-development-tree]] |
| 380 | |
Han-Wen Nienhuys | fe81f93 | 2017-03-23 16:24:09 +0100 | [diff] [blame] | 381 | To consume the JGit dependency from the development tree, edit |
| 382 | `lib/jgit/jgit.bzl` setting LOCAL_JGIT_REPO to a directory holding a |
| 383 | JGit repository. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 384 | |
David Ostrovsky | 2bf355d | 2018-05-30 08:58:22 +0200 | [diff] [blame] | 385 | [[bazel-local-caches]] |
| 386 | |
David Pursehouse | 42cb293 | 2018-06-05 14:49:06 +0900 | [diff] [blame] | 387 | To accelerate builds, several caches are activated per default: |
David Ostrovsky | 2bf355d | 2018-05-30 08:58:22 +0200 | [diff] [blame] | 388 | |
| 389 | * ~/.gerritcodereview/bazel-cache/downloaded-artifacts |
| 390 | * ~/.gerritcodereview/bazel-cache/repository |
| 391 | * ~/.gerritcodereview/bazel-cache/cas |
| 392 | |
David Pursehouse | 42cb293 | 2018-06-05 14:49:06 +0900 | [diff] [blame] | 393 | Currently none of these caches have a maximum size limit. See |
| 394 | link:https://github.com/bazelbuild/bazel/issues/5139[this bazel issue] for |
| 395 | details. Users should watch the cache sizes and clean them manually if |
| 396 | necessary. |
| 397 | |
Han-Wen Nienhuys | 9c15e2b | 2019-05-16 16:59:33 +0200 | [diff] [blame] | 398 | |
| 399 | [[RBE]] |
David Pursehouse | 0713b9a | 2019-05-21 12:20:26 +0900 | [diff] [blame^] | 400 | == Google Remote Build Support |
Han-Wen Nienhuys | 9c15e2b | 2019-05-16 16:59:33 +0200 | [diff] [blame] | 401 | |
| 402 | The Bazel build can be used with Google's Remote Build Execution. |
| 403 | |
| 404 | |
| 405 | This needs the following setup steps: |
| 406 | |
| 407 | ``` |
| 408 | gcloud auth application-default login |
| 409 | gcloud services enable remotebuildexecution.googleapis.com --project=${PROJECT} |
| 410 | ``` |
| 411 | |
| 412 | Create a worker pool. The instances should have at least 4 CPUs each |
| 413 | for adequate performance. |
| 414 | |
| 415 | ``` |
| 416 | gcloud alpha remote-build-execution worker-pools create default \ |
| 417 | --project=${PROJECT} \ |
| 418 | --instance=default_instance \ |
| 419 | --worker-count=50 \ |
| 420 | --machine-type=n1-highcpu-4 \ |
| 421 | --disk-size=200 |
| 422 | ``` |
| 423 | |
| 424 | To use RBE, execute |
| 425 | |
| 426 | ``` |
| 427 | bazel test --config=remote \ |
| 428 | --remote_instance_name=projects/${PROJECT}/instances/default_instance \ |
| 429 | javatests/... |
| 430 | ``` |
| 431 | |
| 432 | |
| 433 | |
| 434 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 435 | GERRIT |
| 436 | ------ |
| 437 | Part of link:index.html[Gerrit Code Review] |
| 438 | |
| 439 | SEARCHBOX |
| 440 | --------- |