blob: f53c7db8c045ddad66913dc7ed60aa100c5a5f79 [file] [log] [blame]
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +02001= Gerrit Code Review - Building with Bazel
2
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +01003[[installation]]
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +02004== Installation
5
David Pursehouse92768902018-03-08 20:52:37 +09006You need to use Python (2 or 3), Java 8, and Node.js for building gerrit.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +02007
8You can install Bazel from the bazel.io:
9https://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 Kempin3cfce172016-11-14 16:17:17 -080017To build the Gerrit web application that includes the GWT UI and the
18PolyGerrit UI:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020019
20----
21 bazel build gerrit
22----
23
David Ostrovskyfdbfcad2016-11-15 06:35:29 -080024[NOTE]
25PolyGerrit UI may require additional tools (such as npm). Please read
26the polygerrit-ui/README.md for more info.
27
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020028The output executable WAR will be placed in:
29
30----
31 bazel-bin/gerrit.war
32----
33
Edwin Kempin976dc0b2016-11-14 16:34:50 -080034[[release]]
Edwin Kempin3cfce172016-11-14 16:17:17 -080035=== Gerrit Release WAR File
36
37To build the Gerrit web application that includes the GWT UI, the
38PolyGerrit UI and documentation:
39
40----
41 bazel build release
42----
43
44The output executable WAR will be placed in:
45
46----
47 bazel-bin/release.war
48----
49
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020050=== Headless Mode
51
52To build Gerrit in headless mode, i.e. without the GWT Web UI:
53
54----
55 bazel build headless
56----
57
58The output executable WAR will be placed in:
59
60----
Edwin Kempin03eaa9a2016-11-14 15:45:51 -080061 bazel-bin/headless.war
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020062----
63
64=== Extension and Plugin API JAR Files
65
66To build the extension, plugin and GWT API JAR files:
67
68----
David Ostrovsky26f8da82016-12-24 09:29:33 +010069 bazel build api
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020070----
71
David Ostrovsky26f8da82016-12-24 09:29:33 +010072The output archive that contains Java binaries, Java sources and
73Java docs will be placed in:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020074
75----
David Ostrovsky26f8da82016-12-24 09:29:33 +010076 bazel-genfiles/api.zip
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020077----
78
David Ostrovsky50785fd2016-10-28 09:17:14 +020079Install {extension,plugin,gwt}-api to the local maven repository:
80
81----
Edwin Kempind3bb3022017-01-24 11:28:34 +010082 tools/maven/api.sh install
David Ostrovsky50785fd2016-10-28 09:17:14 +020083----
84
85Install gerrit.war to the local maven repository:
86
87----
Edwin Kempind3bb3022017-01-24 11:28:34 +010088 tools/maven/api.sh war_install
David Ostrovsky50785fd2016-10-28 09:17:14 +020089----
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020090
91=== Plugins
92
David Ostrovskyaf719682016-09-28 20:31:18 +020093----
94 bazel build plugins:core
95----
96
97The output JAR files for individual plugins will be placed in:
98
99----
Edwin Kempin7e434072016-11-14 16:25:11 -0800100 bazel-genfiles/plugins/<name>/<name>.jar
David Ostrovskyaf719682016-09-28 20:31:18 +0200101----
102
103The JAR files will also be packaged in:
104
105----
106 bazel-genfiles/plugins/core.zip
107----
108
109To build a specific plugin:
110
111----
Edwin Kempin1ed86c72016-11-14 16:28:22 -0800112 bazel build plugins/<name>
David Ostrovskyaf719682016-09-28 20:31:18 +0200113----
114
115The output JAR file will be be placed in:
116
117----
Edwin Kempin1ed86c72016-11-14 16:28:22 -0800118 bazel-genfiles/plugins/<name>/<name>.jar
David Ostrovskyaf719682016-09-28 20:31:18 +0200119----
120
121Note that when building an individual plugin, the `core.zip` package
122is not regenerated.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200123
David Ostrovsky08fca6a2018-08-26 15:53:01 +0200124To build with all Error Prone warnings activated, run:
125
126----
127 bazel build --java_toolchain //tools:error_prone_warnings_toolchain //...
128----
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200129
Han-Wen Nienhuys8ba8abe2016-10-25 15:54:28 +0200130
131[[IDEs]]
132== Using an IDE.
133
134=== IntelliJ
135
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +0100136The Gerrit build works with Bazel's link:https://ij.bazel.io[IntelliJ plugin].
137Please follow the instructions on <<dev-intellij#,IntelliJ Setup>>.
David Ostrovskyc69f3602016-11-13 08:01:08 -0800138
139=== Eclipse
140
141==== Generating the Eclipse Project
142
143Create the Eclipse project:
144
145----
David Pursehouse7e43d1d2017-01-24 08:45:16 +0900146 tools/eclipse/project.py
David Ostrovskyc69f3602016-11-13 08:01:08 -0800147----
148
149and then follow the link:dev-eclipse.html#setup[setup instructions].
150
151==== Refreshing the Classpath
152
153If an updated classpath is needed, the Eclipse project can be
154refreshed and missing dependency JARs can be downloaded by running
David Pursehouse7e43d1d2017-01-24 08:45:16 +0900155`project.py` again. For IntelliJ, you need to click the `Sync Project
Changcheng Xiao31ac98e2016-12-30 08:43:35 +0100156with BUILD Files` button of link:https://ij.bazel.io[IntelliJ plugin].
David Ostrovskyc69f3602016-11-13 08:01:08 -0800157
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200158[[documentation]]
159=== Documentation
160
David Ostrovsky9413ff82016-10-25 00:02:17 +0200161To build only the documentation for testing or static hosting:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200162
David Ostrovsky9413ff82016-10-25 00:02:17 +0200163----
164 bazel build Documentation:searchfree
165----
166
167The html files will be bundled into `searchfree.zip` in this location:
168
169----
170 bazel-bin/Documentation/searchfree.zip
171----
172
173To build the executable WAR with the documentation included:
174
175----
176 bazel build withdocs
177----
178
179The WAR file will be placed in:
180
181----
182 bazel-bin/withdocs.war
183----
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200184
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200185[[tests]]
186== Running Unit Tests
187
188----
189 bazel test --build_tests_only //...
190----
191
192Debugging tests:
193
194----
Edwin Kempind31903c2016-11-14 17:01:44 -0800195 bazel test --test_output=streamed --test_filter=com.gerrit.TestClass.testMethod testTarget
196----
197
198Debug 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 Nienhuys80fcbe12016-09-22 13:16:51 +0200202----
203
204To run a specific test group, e.g. the rest-account test group:
205
206----
Edwin Kempin93c7c482016-11-14 17:04:30 -0800207 bazel test //gerrit-acceptance-tests/src/test/java/com/google/gerrit/acceptance/rest/account:rest_account
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200208----
209
David Ostrovskyb14577d2017-03-22 08:39:47 +0100210To run the tests against NoteDb backend with write
211to NoteDb, but not read from it:
212
213----
214 bazel test --test_env=GERRIT_NOTEDB=WRITE //...
215----
216
217Write and read from NoteDb:
David Ostrovskyf8f1e4a2016-11-15 17:35:59 -0800218
219----
220 bazel test --test_env=GERRIT_NOTEDB=READ_WRITE //...
221----
222
David Ostrovskyb14577d2017-03-22 08:39:47 +0100223Primary storage NoteDb:
224
225----
226 bazel test --test_env=GERRIT_NOTEDB=PRIMARY //...
227----
228
229Primary storage NoteDb and ReviewDb disabled:
230
231----
232 bazel test --test_env=GERRIT_NOTEDB=DISABLE_CHANGE_REVIEW_DB //...
233----
234
Patrick Hiesel244ff8c2016-12-22 11:40:23 +0100235To run only tests that do not use SSH:
236
237----
238 bazel test --test_env=GERRIT_USE_SSH=NO //...
239----
240
Edwin Kempin2e8e96c2017-02-10 11:52:01 +0100241To exclude tests that have been marked as flaky:
242
243----
244 bazel test --test_tag_filters=-flaky //...
245----
246
David Pursehouse7e18f1a2018-05-26 17:40:30 +0900247To exclude tests that require a Docker host:
248
249----
250 bazel test --test_tag_filters=-docker //...
251----
252
Edwin Kempin2e8e96c2017-02-10 11:52:01 +0100253To ignore cached test results:
254
255----
256 bazel test --cache_test_results=NO //...
257----
258
David Pursehouse44445182017-02-22 15:59:17 +0900259To run one or more specific groups of tests:
260
261----
Jacek Centkowski1c41c412017-02-23 06:49:25 +0000262 bazel test --test_tag_filters=api,git //...
David Pursehouse44445182017-02-22 15:59:17 +0900263----
264
265The following values are currently supported for the group name:
266
267* annotation
268* api
David Pursehouse0223c0f2018-06-19 20:44:42 +0900269* docker
David Pursehouse44445182017-02-22 15:59:17 +0900270* edit
David Pursehouse0223c0f2018-06-19 20:44:42 +0900271* elastic
David Pursehouse44445182017-02-22 15:59:17 +0900272* git
273* notedb
274* pgm
275* rest
276* server
277* ssh
278
David Pursehouse564b29a2018-05-30 07:49:02 +0900279[[elasticsearch]]
280=== Elasticsearch
281
David Pursehouseb04ae612018-06-19 20:34:36 +0900282Successfully running the Elasticsearch tests requires Docker, and
283may require setting the local
David Pursehouse564b29a2018-05-30 07:49:02 +0900284link:https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html[virtual memory].
285
David Pursehouseb04ae612018-06-19 20:34:36 +0900286If Docker is not available, the Elasticsearch tests will be skipped.
287Note that Bazel currently does not show
288link:https://github.com/bazelbuild/bazel/issues/3476[the skipped tests].
David Pursehouse564b29a2018-05-30 07:49:02 +0900289
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200290== Dependencies
291
Han-Wen Nienhuys314fb112016-11-14 10:04:02 -0800292Dependency JARs are normally downloaded as needed, but you can
293download everything upfront. This is useful to enable
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200294subsequent builds to run without network access:
295
296----
Han-Wen Nienhuys314fb112016-11-14 10:04:02 -0800297 bazel fetch //...
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200298----
299
300When downloading from behind a proxy (which is common in some corporate
301environments), it might be necessary to explicitly specify the proxy that
302is then used by `curl`:
303
304----
305 export http_proxy=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port>
306----
307
David Ostrovskyc0f6d4d2017-01-20 08:30:07 +0100308Redirection to local mirrors of Maven Central and the Gerrit storage
309bucket 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
317The `local.properties` file may be placed in the root of the gerrit repository
318being built, or in `~/.gerritcodereview/`. The file in the root of the gerrit
319repository has precedence.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200320
321== Building against unpublished Maven JARs
322
323To build against unpublished Maven JARs, like gwtorm or PrologCafe, the custom
324JARs 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
326that artifact:
327
328[source,python]
329----
330 maven_jar(
331 name = 'gwtorm',
Paladox nonedab92ab2017-01-28 22:56:33 +0000332 artifact = 'gwtorm:gwtorm:42',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200333 repository = MAVEN_LOCAL,
334 )
335----
336
337== Building against artifacts from custom Maven repositories
338
339To build against custom Maven repositories, two modes of operations are
340supported: with rewrite in local.properties and without.
341
342Without rewrite the URL of custom Maven repository can be directly passed
343to the maven_jar() function:
344
345[source,python]
346----
347 GERRIT_FORGE = 'http://gerritforge.com/snapshot'
348
349 maven_jar(
350 name = 'gitblit',
Paladox nonedab92ab2017-01-28 22:56:33 +0000351 artifact = 'com.gitblit:gitblit:1.4.0',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200352 sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200353 repository = GERRIT_FORGE,
354 )
355----
356
357When the custom URL has to be rewritten, then the same logic as with Gerrit
358known Maven repository is used: Repo name must be defined that matches an entry
359in local.properties file:
360
361----
362 download.GERRIT_FORGE = http://my.company.mirror/gerrit-forge
363----
364
365And corresponding WORKSPACE excerpt:
366
367[source,python]
368----
369 GERRIT_FORGE = 'GERRIT_FORGE:'
370
371 maven_jar(
372 name = 'gitblit',
Paladox nonedab92ab2017-01-28 22:56:33 +0000373 artifact = 'com.gitblit:gitblit:1.4.0',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200374 sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200375 repository = GERRIT_FORGE,
376 )
377----
378
David Ostrovskye51b7452016-11-06 18:07:10 +0100379[[consume-jgit-from-development-tree]]
380
Han-Wen Nienhuysfe81f932017-03-23 16:24:09 +0100381To consume the JGit dependency from the development tree, edit
382`lib/jgit/jgit.bzl` setting LOCAL_JGIT_REPO to a directory holding a
383JGit repository.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200384
David Ostrovsky2bf355d2018-05-30 08:58:22 +0200385[[bazel-local-caches]]
386
David Pursehouse42cb2932018-06-05 14:49:06 +0900387To accelerate builds, several caches are activated per default:
David Ostrovsky2bf355d2018-05-30 08:58:22 +0200388
389* ~/.gerritcodereview/bazel-cache/downloaded-artifacts
390* ~/.gerritcodereview/bazel-cache/repository
391* ~/.gerritcodereview/bazel-cache/cas
392
David Pursehouse42cb2932018-06-05 14:49:06 +0900393Currently none of these caches have a maximum size limit. See
394link:https://github.com/bazelbuild/bazel/issues/5139[this bazel issue] for
395details. Users should watch the cache sizes and clean them manually if
396necessary.
397
Han-Wen Nienhuys9c15e2b2019-05-16 16:59:33 +0200398
399[[RBE]]
David Pursehouse0713b9a2019-05-21 12:20:26 +0900400== Google Remote Build Support
Han-Wen Nienhuys9c15e2b2019-05-16 16:59:33 +0200401
402The Bazel build can be used with Google's Remote Build Execution.
403
404
405This needs the following setup steps:
406
407```
408gcloud auth application-default login
409gcloud services enable remotebuildexecution.googleapis.com --project=${PROJECT}
410```
411
412Create a worker pool. The instances should have at least 4 CPUs each
413for adequate performance.
414
415```
416gcloud 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
424To use RBE, execute
425
426```
427bazel test --config=remote \
428 --remote_instance_name=projects/${PROJECT}/instances/default_instance \
429 javatests/...
430```
431
432
433
434
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200435GERRIT
436------
437Part of link:index.html[Gerrit Code Review]
438
439SEARCHBOX
440---------