blob: 89c4b840af59e3d63ade76106edcda672c077092 [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]]
Olivier Croquettea9091192018-01-14 20:20:56 +01004== Prerequisites
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +02005
Olivier Croquettea9091192018-01-14 20:20:56 +01006To build Gerrit from source, you need:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +02007
Olivier Croquettea9091192018-01-14 20:20:56 +01008* A Linux or macOS system (Windows is not supported at this time)
9* A JDK for Java 8
David Pursehouse05af76f2018-03-12 08:52:08 +090010* Python 2 or 3
Olivier Croquettea9091192018-01-14 20:20:56 +010011* Node.js
12* link:https://www.bazel.io/versions/master/docs/install.html[Bazel]
Han-Wen Nienhuysf66222f2018-04-18 14:11:40 +020013* Maven
14* zip, unzip
15* gcc
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020016
17[[build]]
18== Building on the Command Line
19
20=== Gerrit Development WAR File
21
Edwin Kempin3cfce172016-11-14 16:17:17 -080022To build the Gerrit web application that includes the GWT UI and the
23PolyGerrit UI:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020024
25----
26 bazel build gerrit
27----
28
David Ostrovskyfdbfcad2016-11-15 06:35:29 -080029[NOTE]
30PolyGerrit UI may require additional tools (such as npm). Please read
31the polygerrit-ui/README.md for more info.
32
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020033The output executable WAR will be placed in:
34
35----
36 bazel-bin/gerrit.war
37----
38
Edwin Kempin976dc0b2016-11-14 16:34:50 -080039[[release]]
Edwin Kempin3cfce172016-11-14 16:17:17 -080040=== Gerrit Release WAR File
41
42To build the Gerrit web application that includes the GWT UI, the
Sven Selberge9897dd2017-12-21 15:24:29 +010043PolyGerrit UI, core plugins and documentation:
Edwin Kempin3cfce172016-11-14 16:17:17 -080044
45----
46 bazel build release
47----
48
49The output executable WAR will be placed in:
50
51----
52 bazel-bin/release.war
53----
54
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020055=== Headless Mode
56
57To build Gerrit in headless mode, i.e. without the GWT Web UI:
58
59----
60 bazel build headless
61----
62
63The output executable WAR will be placed in:
64
65----
Edwin Kempin03eaa9a2016-11-14 15:45:51 -080066 bazel-bin/headless.war
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020067----
68
69=== Extension and Plugin API JAR Files
70
71To build the extension, plugin and GWT API JAR files:
72
73----
David Ostrovsky26f8da82016-12-24 09:29:33 +010074 bazel build api
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020075----
76
David Ostrovsky26f8da82016-12-24 09:29:33 +010077The output archive that contains Java binaries, Java sources and
78Java docs will be placed in:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020079
80----
David Ostrovsky26f8da82016-12-24 09:29:33 +010081 bazel-genfiles/api.zip
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020082----
83
David Ostrovsky50785fd2016-10-28 09:17:14 +020084Install {extension,plugin,gwt}-api to the local maven repository:
85
86----
Edwin Kempind3bb3022017-01-24 11:28:34 +010087 tools/maven/api.sh install
David Ostrovsky50785fd2016-10-28 09:17:14 +020088----
89
90Install gerrit.war to the local maven repository:
91
92----
Edwin Kempind3bb3022017-01-24 11:28:34 +010093 tools/maven/api.sh war_install
David Ostrovsky50785fd2016-10-28 09:17:14 +020094----
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020095
96=== Plugins
97
David Ostrovskyaf719682016-09-28 20:31:18 +020098----
99 bazel build plugins:core
100----
101
102The output JAR files for individual plugins will be placed in:
103
104----
Edwin Kempin7e434072016-11-14 16:25:11 -0800105 bazel-genfiles/plugins/<name>/<name>.jar
David Ostrovskyaf719682016-09-28 20:31:18 +0200106----
107
108The JAR files will also be packaged in:
109
110----
111 bazel-genfiles/plugins/core.zip
112----
113
114To build a specific plugin:
115
116----
Edwin Kempin1ed86c72016-11-14 16:28:22 -0800117 bazel build plugins/<name>
David Ostrovskyaf719682016-09-28 20:31:18 +0200118----
119
120The output JAR file will be be placed in:
121
122----
Edwin Kempin1ed86c72016-11-14 16:28:22 -0800123 bazel-genfiles/plugins/<name>/<name>.jar
David Ostrovskyaf719682016-09-28 20:31:18 +0200124----
125
126Note that when building an individual plugin, the `core.zip` package
127is not regenerated.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200128
129
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----
David Ostrovsky714982e2017-08-24 09:43:44 +0200201 bazel test --test_output=streamed --test_filter=com.google.gerrit.acceptance.api.change.ChangeIT.getAmbiguous //javatests/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----
David Ostrovsky714982e2017-08-24 09:43:44 +0200207 bazel test //javatests/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----
David Ostrovskyce8ffa72017-08-29 08:23:43 +0000232 bazel test --test_env=GERRIT_NOTEDB=ON //...
David Ostrovskyb14577d2017-03-22 08:39:47 +0100233----
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
247To ignore cached test results:
248
249----
250 bazel test --cache_test_results=NO //...
251----
252
David Pursehouse44445182017-02-22 15:59:17 +0900253To run one or more specific groups of tests:
254
255----
Jacek Centkowski1c41c412017-02-23 06:49:25 +0000256 bazel test --test_tag_filters=api,git //...
David Pursehouse44445182017-02-22 15:59:17 +0900257----
258
259The following values are currently supported for the group name:
260
261* annotation
262* api
263* edit
264* git
265* notedb
266* pgm
267* rest
268* server
269* ssh
270
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200271== Dependencies
272
Han-Wen Nienhuys314fb112016-11-14 10:04:02 -0800273Dependency JARs are normally downloaded as needed, but you can
274download everything upfront. This is useful to enable
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200275subsequent builds to run without network access:
276
277----
Han-Wen Nienhuys314fb112016-11-14 10:04:02 -0800278 bazel fetch //...
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200279----
280
281When downloading from behind a proxy (which is common in some corporate
282environments), it might be necessary to explicitly specify the proxy that
283is then used by `curl`:
284
285----
286 export http_proxy=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port>
287----
288
David Ostrovskyc0f6d4d2017-01-20 08:30:07 +0100289Redirection to local mirrors of Maven Central and the Gerrit storage
290bucket is supported by defining specific properties in
291`local.properties`, a file that is not tracked by Git:
292
293----
294 echo download.GERRIT = http://nexus.my-company.com/ >>local.properties
295 echo download.MAVEN_CENTRAL = http://nexus.my-company.com/ >>local.properties
296----
297
298The `local.properties` file may be placed in the root of the gerrit repository
299being built, or in `~/.gerritcodereview/`. The file in the root of the gerrit
300repository has precedence.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200301
302== Building against unpublished Maven JARs
303
304To build against unpublished Maven JARs, like gwtorm or PrologCafe, the custom
305JARs must be installed in the local Maven repository (`mvn clean install`) and
306`maven_jar()` must be updated to point to the `MAVEN_LOCAL` Maven repository for
307that artifact:
308
309[source,python]
310----
311 maven_jar(
312 name = 'gwtorm',
Paladox nonedab92ab2017-01-28 22:56:33 +0000313 artifact = 'gwtorm:gwtorm:42',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200314 repository = MAVEN_LOCAL,
315 )
316----
317
318== Building against artifacts from custom Maven repositories
319
320To build against custom Maven repositories, two modes of operations are
321supported: with rewrite in local.properties and without.
322
323Without rewrite the URL of custom Maven repository can be directly passed
324to the maven_jar() function:
325
326[source,python]
327----
328 GERRIT_FORGE = 'http://gerritforge.com/snapshot'
329
330 maven_jar(
331 name = 'gitblit',
Paladox nonedab92ab2017-01-28 22:56:33 +0000332 artifact = 'com.gitblit:gitblit:1.4.0',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200333 sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200334 repository = GERRIT_FORGE,
335 )
336----
337
338When the custom URL has to be rewritten, then the same logic as with Gerrit
339known Maven repository is used: Repo name must be defined that matches an entry
340in local.properties file:
341
342----
343 download.GERRIT_FORGE = http://my.company.mirror/gerrit-forge
344----
345
346And corresponding WORKSPACE excerpt:
347
348[source,python]
349----
350 GERRIT_FORGE = 'GERRIT_FORGE:'
351
352 maven_jar(
353 name = 'gitblit',
Paladox nonedab92ab2017-01-28 22:56:33 +0000354 artifact = 'com.gitblit:gitblit:1.4.0',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200355 sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200356 repository = GERRIT_FORGE,
357 )
358----
359
David Ostrovskye51b7452016-11-06 18:07:10 +0100360[[consume-jgit-from-development-tree]]
361
Han-Wen Nienhuysccb26662017-03-23 16:24:09 +0100362To consume the JGit dependency from the development tree, edit
363`lib/jgit/jgit.bzl` setting LOCAL_JGIT_REPO to a directory holding a
364JGit repository.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200365
David Ostrovsky88bc3722017-09-19 08:29:27 +0200366[[clean-download-cache]]
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200367=== Cleaning The download cache
368
David Ostrovsky88bc3722017-09-19 08:29:27 +0200369The cache for downloaded artifacts is located in
Dave Borowitz9c359792017-11-14 08:40:55 -0500370`~/.gerritcodereview/bazel-cache/downloaded-artifacts`.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200371
David Ostrovsky88bc3722017-09-19 08:29:27 +0200372If you really do need to clean the download cache manually, then:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200373
374----
Dave Borowitz9c359792017-11-14 08:40:55 -0500375 rm -rf ~/.gerritcodereview/bazel-cache/downloaded-artifacts
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200376----
377
David Ostrovsky88bc3722017-09-19 08:29:27 +0200378[[local-action-cache]]
379
380To accelerate builds, local action cache can be activated. Note, that this
381experimental feature is not activated per default and only available since
382Bazel version 0.7.
383
384To activate the local action cache, create accessible cache directory:
385
386----
387 mkdir -p ~/.gerritcodereview/bazel-cache/cas
388----
389
390and add these lines to your `~/.bazelrc` file:
391
392----
393build --experimental_local_disk_cache_path=/home/<user>/.gerritcodereview/bazel-cache/cas
394build --experimental_local_disk_cache
395build --experimental_strict_action_env
Dave Borowitzac56c3132018-04-16 12:05:38 +0200396build --action_env=PATH
David Ostrovsky88bc3722017-09-19 08:29:27 +0200397----
398
399[NOTE] `experimental_local_disk_cache_path` must be absolute path. Expansion of `~` is
400unfortunately not supported yet. This is also the reason why we can't activate this
401feature by default yet (by adjusting tools/bazel.rc file).
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200402
David Ostrovsky3b3a5eb2017-12-24 08:44:44 +0100403[[repository_cache]]
404
405To accelerate fetches, local repository cache can be activated. This cache is
406only used for rules_closure external repository and transitive dependendcies.
407That's because rules_closure uses standard Bazel download facility. For all
408other gerrit dependencies, the download_artifacts repository cache is used
409already.
410
411To activate the local repository cache, create accessible cache directory:
412
413----
414 mkdir -p ~/.gerritcodereview/bazel-cache/repository
415----
416
417and add this line to your `~/.bazelrc` file:
418
419----
420build --experimental_repository_cache=/home/<user>/.gerritcodereview/bazel-cache/repository
421----
422
423[NOTE] `experimental_repository_cache` must be absolute path. Expansion of `~` is
424unfortunately not supported yet. This is also the reason why we can't activate this
425feature by default yet (by adjusting tools/bazel.rc file).
426
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200427GERRIT
428------
429Part of link:index.html[Gerrit Code Review]
430
431SEARCHBOX
432---------