blob: ce4cef485afc5e6e99fc430000228648efc78267 [file] [log] [blame]
Marian Harbachebeb1542019-12-13 10:42:46 +01001:linkattrs:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +02002= Gerrit Code Review - Building with Bazel
3
Han-Wen Nienhuys1e318032020-01-08 16:53:08 +01004[[summary]]
5== TL;DR
6
7If you have the prerequisites, running
8
9```
10 $ bazel build gerrit
11```
12
13should generate a .war file under `bazel-bin/gerrit.war`.
14
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +010015[[installation]]
Olivier Croquettea9091192018-01-14 20:20:56 +010016== Prerequisites
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020017
Olivier Croquettea9091192018-01-14 20:20:56 +010018To build Gerrit from source, you need:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020019
Olivier Croquettea9091192018-01-14 20:20:56 +010020* A Linux or macOS system (Windows is not supported at this time)
David Ostrovsky21a891c2020-12-19 12:57:06 +010021* A JDK for Java 11 or Java 17
David Ostrovsky2b5fe092021-03-03 11:52:30 +010022* Python 3
Marian Harbach34253372019-12-10 18:01:31 +010023* link:https://github.com/nodesource/distributions/blob/master/README.md[Node.js (including npm),role=external,window=_blank]
Ben Rohlfs11876a42020-04-27 10:16:51 +020024* Bower (`npm install -g bower`)
David Pursehousebfe2d142020-01-29 18:02:53 +090025* link:https://docs.bazel.build/versions/master/install.html[Bazel,role=external,window=_blank] -launched with
26link:https://github.com/bazelbuild/bazelisk[Bazelisk,role=external,window=_blank]
Han-Wen Nienhuysf66222f2018-04-18 14:11:40 +020027* Maven
28* zip, unzip
Christian Aistleitner53345062020-04-27 14:37:08 +020029* curl
Han-Wen Nienhuysf66222f2018-04-18 14:11:40 +020030* gcc
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020031
Marco Miller9bede912020-01-27 17:38:40 -050032[[bazel]]
33=== Bazel
34
Ben Rohlfs11876a42020-04-27 10:16:51 +020035link:https://github.com/bazelbuild/bazelisk[Bazelisk,role=external,window=_blank] is a version
36manager for link:https://bazel.build/[Bazel,role=external,window=_blank], similar to how `nvm`
37manages `npm` versions. It takes care of downloading and installing Bazel itself, so you don't have
Clark Boylan8784a6c2023-09-27 16:35:19 -070038to worry about using the correct version of Bazel. One particular advantage to
39using Bazelisk is that you can jump between different versions of Gerrit and not
40worry about which version of Bazel you need.
41
42Bazelisk can be installed in different ways:
43link:https://docs.bazel.build/install-bazelisk.html[Bazelisk Installation,role=external,window=_blank].
44To execute the correct version of Bazel using Bazelisk you simply replace
45the `bazel` command with `bazelisk`.
Marco Miller9bede912020-01-27 17:38:40 -050046
David Pursehousec8b633d2019-05-08 08:36:18 +090047[[java]]
48=== Java
49
Matthias Sohn82786672021-02-25 17:19:53 +010050Ensure that the link:install.html#Requirements[required Java version]
51is installed and that `JAVA_HOME` is set to it.
Alice Kober-Sotzeka8029b62019-05-07 19:13:00 +020052
53To check the installed version of Java, open a terminal window and run:
54
55`java -version`
56
David Ostrovskyb89332d2020-04-27 07:06:24 +020057[[java-11]]
58==== Java 11 support
59
David Ostrovsky2f231872022-01-11 21:51:15 +010060To build Gerrit with Java 11 language level, run:
David Ostrovskyb89332d2020-04-27 07:06:24 +020061
62```
Clark Boylan8784a6c2023-09-27 16:35:19 -070063 $ bazelisk build --java_toolchain=//tools:error_prone_warnings_toolchain_java11 :release
David Ostrovskyb89332d2020-04-27 07:06:24 +020064```
65
David Ostrovsky21a891c2020-12-19 12:57:06 +010066[[java-17]]
67==== Java 17 support
David Pursehousec8b633d2019-05-08 08:36:18 +090068
David Ostrovsky21a891c2020-12-19 12:57:06 +010069Java 17 is supported. To build Gerrit with Java 17, run:
David Ostrovskyf55b69f2018-08-23 08:25:24 +020070
71```
Clark Boylan8784a6c2023-09-27 16:35:19 -070072 $ bazelisk build --config=java17 :release
David Ostrovskyf55b69f2018-08-23 08:25:24 +020073```
74
David Ostrovsky21a891c2020-12-19 12:57:06 +010075To run the tests with Java 17, run:
David Ostrovsky0bceb042018-08-25 07:37:54 +020076
77```
Clark Boylan8784a6c2023-09-27 16:35:19 -070078 $ bazelisk test --config=java17 //...
David Ostrovsky0bceb042018-08-25 07:37:54 +020079```
80
Alice Kober-Sotzek79290dc2019-05-07 19:26:18 +020081=== Node.js and npm packages
Marian Harbach34253372019-12-10 18:01:31 +010082See link:https://gerrit.googlesource.com/gerrit/+/master/polygerrit-ui/README.md#installing-node_js-and-npm-packages[Installing Node.js and npm packages,role=external,window=_blank].
Alice Kober-Sotzek79290dc2019-05-07 19:26:18 +020083
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020084[[build]]
85== Building on the Command Line
86
87=== Gerrit Development WAR File
88
David Ostrovsky7163dac2017-07-29 06:49:38 +020089To build the Gerrit web application:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020090
91----
Clark Boylan8784a6c2023-09-27 16:35:19 -070092 bazelisk build gerrit
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020093----
94
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +020095The output executable WAR will be placed in:
96
97----
98 bazel-bin/gerrit.war
99----
100
Edwin Kempin976dc0b2016-11-14 16:34:50 -0800101[[release]]
Edwin Kempin3cfce172016-11-14 16:17:17 -0800102=== Gerrit Release WAR File
103
Ben Rohlfsda0a62b2021-04-26 17:02:19 +0200104To build the Gerrit web application that includes the Gerrit UI,
David Ostrovsky7163dac2017-07-29 06:49:38 +0200105core plugins and documentation:
Edwin Kempin3cfce172016-11-14 16:17:17 -0800106
107----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700108 bazelisk build release
Edwin Kempin3cfce172016-11-14 16:17:17 -0800109----
110
111The output executable WAR will be placed in:
112
113----
114 bazel-bin/release.war
115----
116
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200117=== Headless Mode
118
Ben Rohlfsda0a62b2021-04-26 17:02:19 +0200119To build Gerrit in headless mode, i.e. without the Gerrit UI:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200120
121----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700122 bazelisk build headless
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200123----
124
125The output executable WAR will be placed in:
126
127----
Edwin Kempin03eaa9a2016-11-14 15:45:51 -0800128 bazel-bin/headless.war
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200129----
130
131=== Extension and Plugin API JAR Files
132
David Ostrovsky7163dac2017-07-29 06:49:38 +0200133To build the extension, plugin and acceptance-framework JAR files:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200134
135----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700136 bazelisk build api
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200137----
138
David Ostrovsky26f8da82016-12-24 09:29:33 +0100139The output archive that contains Java binaries, Java sources and
140Java docs will be placed in:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200141
142----
Luca Milanesio5bd7b9b2019-06-10 10:01:02 +0100143 bazel-bin/api.zip
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200144----
145
David Ostrovsky7163dac2017-07-29 06:49:38 +0200146Install {extension,plugin,acceptance-framework}-api to the local
147maven repository:
David Ostrovsky50785fd2016-10-28 09:17:14 +0200148
149----
Edwin Kempind3bb3022017-01-24 11:28:34 +0100150 tools/maven/api.sh install
David Ostrovsky50785fd2016-10-28 09:17:14 +0200151----
152
153Install gerrit.war to the local maven repository:
154
155----
Edwin Kempind3bb3022017-01-24 11:28:34 +0100156 tools/maven/api.sh war_install
David Ostrovsky50785fd2016-10-28 09:17:14 +0200157----
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200158
159=== Plugins
160
David Ostrovskyaf719682016-09-28 20:31:18 +0200161----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700162 bazelisk build plugins:core
David Ostrovskyaf719682016-09-28 20:31:18 +0200163----
164
165The output JAR files for individual plugins will be placed in:
166
167----
Luca Milanesio5bd7b9b2019-06-10 10:01:02 +0100168 bazel-bin/plugins/<name>/<name>.jar
David Ostrovskyaf719682016-09-28 20:31:18 +0200169----
170
171The JAR files will also be packaged in:
172
173----
Luca Milanesio5bd7b9b2019-06-10 10:01:02 +0100174 bazel-bin/plugins/core.zip
David Ostrovskyaf719682016-09-28 20:31:18 +0200175----
176
177To build a specific plugin:
178
179----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700180 bazelisk build plugins/<name>
David Ostrovskyaf719682016-09-28 20:31:18 +0200181----
182
183The output JAR file will be be placed in:
184
185----
Luca Milanesio5bd7b9b2019-06-10 10:01:02 +0100186 bazel-bin/plugins/<name>/<name>.jar
David Ostrovskyaf719682016-09-28 20:31:18 +0200187----
188
189Note that when building an individual plugin, the `core.zip` package
190is not regenerated.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200191
Han-Wen Nienhuys8ba8abe2016-10-25 15:54:28 +0200192[[IDEs]]
193== Using an IDE.
194
195=== IntelliJ
196
Marian Harbach34253372019-12-10 18:01:31 +0100197The Gerrit build works with Bazel's link:https://ij.bazel.build[IntelliJ plugin,role=external,window=_blank].
Alice Kober-Sotzekd9da89f2016-11-25 12:02:18 +0100198Please follow the instructions on <<dev-intellij#,IntelliJ Setup>>.
David Ostrovskyc69f3602016-11-13 08:01:08 -0800199
200=== Eclipse
201
202==== Generating the Eclipse Project
203
204Create the Eclipse project:
205
206----
David Pursehouse7e43d1d2017-01-24 08:45:16 +0900207 tools/eclipse/project.py
David Ostrovskyc69f3602016-11-13 08:01:08 -0800208----
209
210and then follow the link:dev-eclipse.html#setup[setup instructions].
211
212==== Refreshing the Classpath
213
214If an updated classpath is needed, the Eclipse project can be
215refreshed and missing dependency JARs can be downloaded by running
David Pursehouse7e43d1d2017-01-24 08:45:16 +0900216`project.py` again. For IntelliJ, you need to click the `Sync Project
Marian Harbach34253372019-12-10 18:01:31 +0100217with BUILD Files` button of link:https://ij.bazel.build[Bazel plugin,role=external,window=_blank].
David Ostrovskyc69f3602016-11-13 08:01:08 -0800218
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200219[[documentation]]
Nasser Grainawia55b20d2021-03-08 11:52:01 -0700220== Documentation
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200221
David Ostrovsky9413ff82016-10-25 00:02:17 +0200222To build only the documentation for testing or static hosting:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200223
David Ostrovsky9413ff82016-10-25 00:02:17 +0200224----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700225 bazelisk build Documentation:searchfree
David Ostrovsky9413ff82016-10-25 00:02:17 +0200226----
227
228The html files will be bundled into `searchfree.zip` in this location:
229
230----
231 bazel-bin/Documentation/searchfree.zip
232----
233
Antoine Musso8e4ae542020-12-22 12:09:16 +0100234To generate HTML files skipping the zip archiving:
235
236----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700237 bazelisk build Documentation
Antoine Musso8e4ae542020-12-22 12:09:16 +0100238----
239
240And open `bazel-bin/Documentation/index.html`.
241
242To build the Gerrit executable WAR with the documentation included:
David Ostrovsky9413ff82016-10-25 00:02:17 +0200243
244----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700245 bazelisk build withdocs
David Ostrovsky9413ff82016-10-25 00:02:17 +0200246----
247
248The WAR file will be placed in:
249
250----
251 bazel-bin/withdocs.war
252----
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200253
Antoine Musso524b0562020-11-18 10:36:05 +0100254Alternatively, one can generate the documentation as flat files:
255
256----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700257 bazelisk build Documentation:Documentation
Antoine Musso524b0562020-11-18 10:36:05 +0100258----
259
260The html, css, js files are placed in:
261
262----
263 `bazel-bin/Documentation/`
264----
265
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200266[[tests]]
267== Running Unit Tests
268
Clark Boylan8784a6c2023-09-27 16:35:19 -0700269Bazel BUILD files define test targets for Gerrit. You can run all declared
270test targets with:
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200271
272----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700273 bazelisk test --build_tests_only //...
Edwin Kempind31903c2016-11-14 17:01:44 -0800274----
275
Clark Boylan8784a6c2023-09-27 16:35:19 -0700276[[testgroups]]
277=== Running Test Groups
278
279To run one or more specific labeled groups of tests:
Edwin Kempind31903c2016-11-14 17:01:44 -0800280
281----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700282 bazelisk test --test_tag_filters=api,git //...
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200283----
284
Clark Boylan8784a6c2023-09-27 16:35:19 -0700285The following label values are currently supported for the group name:
David Pursehouse44445182017-02-22 15:59:17 +0900286
287* annotation
288* api
289* edit
290* git
David Pursehouse180bca52019-12-04 20:05:07 +0900291* git-protocol-v2
David Ostrovsky61a44ae2020-05-14 08:29:54 +0200292* git-upload-archive
David Pursehouse44445182017-02-22 15:59:17 +0900293* notedb
294* pgm
295* rest
296* server
297* ssh
298
Clark Boylan8784a6c2023-09-27 16:35:19 -0700299We can also select tests within a specific BUILD target group. For example
300`javatests/com/google/gerrit/acceptance/rest/account/BUILD` declares a
301rest_account test target group:
302
303----
304 bazelisk test //javatests/com/google/gerrit/acceptance/rest/account:rest_account
305----
306
307[[debugtests]]
308=== Debugging Tests
309
310To debug specific tests you will need to select the test target containing
311that test then use `--test_filter` to select the specific test you want.
312This `--test_filter` is a regex and can be used to select multiple tests
313out of the target:
314
315----
316 bazelisk test --test_output=streamed --test_filter=com.gerrit.TestClass.testMethod testTarget
317----
318
319For example `javatests/com/google/gerrit/acceptance/api/change/BUILD`
320defines a test target group for every `*IT.java` file in the directory.
321We can execute the single `getAmbiguous()` test found in ChangeIT.java using
322this `--test_filter` and target:
323
324----
325 bazelisk test --test_output=streamed \
326 --test_filter=com.google.gerrit.acceptance.api.change.ChangeIT.getAmbiguous \
327 //javatests/com/google/gerrit/acceptance/api/change:ChangeIT
328----
329
330[[additionaltestfiltering]]
331=== Additional Test Filtering
332
333To run only tests that do not use SSH:
334
335----
336 bazelisk test --test_env=GERRIT_USE_SSH=NO //...
337----
338
339To exclude tests that have been marked as flaky:
340
341----
342 bazelisk test --test_tag_filters=-flaky //...
343----
344
345To exclude tests that require very recent git client version:
346
347----
348 bazelisk test --test_tag_filters=-git-protocol-v2 //...
349----
350
351To run the tests against a specific index backend (LUCENE, FAKE):
352----
353 bazelisk test --test_env=GERRIT_INDEX_TYPE=LUCENE //...
354----
355
Nasser Grainawi02f53452021-02-19 08:17:49 -0700356Bazel itself supports a multitude of ways to
Clark Boylan8784a6c2023-09-27 16:35:19 -0700357link:https://bazel.build/run/build#specifying-build-targets[specify targets,role=external,window=_blank]
Nasser Grainawi02f53452021-02-19 08:17:49 -0700358for fine-grained test selection that can be combined with many of the examples
359above.
360
Clark Boylan8784a6c2023-09-27 16:35:19 -0700361[[testcaching]]
362=== Test Caching
363
364By default Bazel caches test results and will not reexecute tests unless they
365or their dependencies have been modified. To ignore cached test results and
366force the tests to rerun:
367
368----
369 bazelisk test --cache_test_results=NO //...
370----
371
372[[plugintests]]
373=== Running Plugin Tests
374
375Running tests for Gerrit plugins follows the process above. From within the
376Gerrit project root with the desired plugins checked out into `plugins/` we
377execute Bazel with the appropriate target:
378
379----
380 bazelisk test //plugins/replication/...
381----
382
Saša Živkov1b716dd2021-03-12 17:03:33 +0100383[[debugging-tests]]
384== Debugging Unit Tests
385In some cases it may be necessary to debug a test while running it in bazel. For example, when we
386observe a different test result in Eclipse and bazel. Using the `--java_debug` option will start the
387JVM in debug mode and await for a remote debugger to attach.
388
389Example:
390[source,bash]
391----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700392 bazelisk test --java_debug --test_tag_filters=delete-project //...
Saša Živkov1b716dd2021-03-12 17:03:33 +0100393 ...
394 Listening for transport dt_socket at address: 5005
395 ...
396----
397
398Now attach with a debugger to the port `5005`. For example use "Remote Java Application" launch
Martin Fick6b67d572023-04-04 14:23:14 -0600399configuration in Eclipse and specify the port `5005`.
Saša Živkov1b716dd2021-03-12 17:03:33 +0100400
David Ostrovsky17ef1272020-02-16 14:51:07 +0100401[[logging]]
402=== Controlling logging level
Hamza Kacedc54e6b52020-01-24 12:59:09 -0500403
David Ostrovsky17ef1272020-02-16 14:51:07 +0100404Per default, logging level is set to `INFO` level for all tests. The `DEBUG`
405log level can be enabled for the tests.
Hamza Kacedc54e6b52020-01-24 12:59:09 -0500406
David Ostrovsky17ef1272020-02-16 14:51:07 +0100407In IDE, set `-Dgerrit.logLevel=debug` as a VM argument. With `bazel`, pass
408`GERRIT_LOG_LEVEL=debug` environment variable:
Hamza Kacedc54e6b52020-01-24 12:59:09 -0500409
410----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700411 bazelisk test --test_filter=com.google.gerrit.server.notedb.ChangeNotesTest \
412 --test_env=GERRIT_LOG_LEVEL=debug \
413 javatests/com/google/gerrit/server:server_tests
Hamza Kacedc54e6b52020-01-24 12:59:09 -0500414----
415
David Ostrovsky17ef1272020-02-16 14:51:07 +0100416The log results can be found in:
417`bazel-testlogs/javatests/com/google/gerrit/server/server_tests/test.log`.
418
419
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200420== Dependencies
421
Han-Wen Nienhuys314fb112016-11-14 10:04:02 -0800422Dependency JARs are normally downloaded as needed, but you can
423download everything upfront. This is useful to enable
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200424subsequent builds to run without network access:
425
426----
Clark Boylan8784a6c2023-09-27 16:35:19 -0700427 bazelisk fetch //...
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200428----
429
430When downloading from behind a proxy (which is common in some corporate
431environments), it might be necessary to explicitly specify the proxy that
432is then used by `curl`:
433
434----
435 export http_proxy=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port>
436----
437
David Ostrovskyc0f6d4d2017-01-20 08:30:07 +0100438Redirection to local mirrors of Maven Central and the Gerrit storage
439bucket is supported by defining specific properties in
440`local.properties`, a file that is not tracked by Git:
441
442----
443 echo download.GERRIT = http://nexus.my-company.com/ >>local.properties
444 echo download.MAVEN_CENTRAL = http://nexus.my-company.com/ >>local.properties
445----
446
447The `local.properties` file may be placed in the root of the gerrit repository
448being built, or in `~/.gerritcodereview/`. The file in the root of the gerrit
449repository has precedence.
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200450
451== Building against unpublished Maven JARs
452
Dave Borowitz8626f872019-04-19 14:34:36 -0700453To build against unpublished Maven JARs, like PrologCafe, the custom JARs must
454be installed in the local Maven repository (`mvn clean install`) and
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200455`maven_jar()` must be updated to point to the `MAVEN_LOCAL` Maven repository for
456that artifact:
457
458[source,python]
459----
460 maven_jar(
Dave Borowitz8626f872019-04-19 14:34:36 -0700461 name = 'prolog-runtime',
462 artifact = 'com.googlecode.prolog-cafe:prolog-runtime:42',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200463 repository = MAVEN_LOCAL,
464 )
465----
466
467== Building against artifacts from custom Maven repositories
468
469To build against custom Maven repositories, two modes of operations are
470supported: with rewrite in local.properties and without.
471
472Without rewrite the URL of custom Maven repository can be directly passed
473to the maven_jar() function:
474
475[source,python]
476----
477 GERRIT_FORGE = 'http://gerritforge.com/snapshot'
478
479 maven_jar(
480 name = 'gitblit',
Paladox nonedab92ab2017-01-28 22:56:33 +0000481 artifact = 'com.gitblit:gitblit:1.4.0',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200482 sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200483 repository = GERRIT_FORGE,
484 )
485----
486
487When the custom URL has to be rewritten, then the same logic as with Gerrit
488known Maven repository is used: Repo name must be defined that matches an entry
489in local.properties file:
490
491----
492 download.GERRIT_FORGE = http://my.company.mirror/gerrit-forge
493----
494
495And corresponding WORKSPACE excerpt:
496
497[source,python]
498----
499 GERRIT_FORGE = 'GERRIT_FORGE:'
500
501 maven_jar(
502 name = 'gitblit',
Paladox nonedab92ab2017-01-28 22:56:33 +0000503 artifact = 'com.gitblit:gitblit:1.4.0',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200504 sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa',
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200505 repository = GERRIT_FORGE,
506 )
507----
508
David Ostrovskyad61c852019-01-14 07:11:04 +0100509== Building against SNAPSHOT Maven JARs
510
511To build against SNAPSHOT Maven JARs, the complete SNAPSHOT version must be used:
512
513[source,python]
514----
515 maven_jar(
516 name = "pac4j-core",
517 artifact = "org.pac4j:pac4j-core:3.5.0-SNAPSHOT-20190112.120241-16",
518 sha1 = "da2b1cb68a8f87bfd40813179abd368de9f3a746",
519 )
520----
521
David Ostrovsky2bf355d2018-05-30 08:58:22 +0200522[[bazel-local-caches]]
David Ostrovsky88bc3722017-09-19 08:29:27 +0200523
David Pursehouse42cb2932018-06-05 14:49:06 +0900524To accelerate builds, several caches are activated per default:
David Ostrovsky2bf355d2018-05-30 08:58:22 +0200525
526* ~/.gerritcodereview/bazel-cache/downloaded-artifacts
527* ~/.gerritcodereview/bazel-cache/repository
528* ~/.gerritcodereview/bazel-cache/cas
529
Antoine Mussoff89f792021-05-04 11:14:05 +0200530The `downloaded-artifacts` cache can be relocated by setting the
531`GERRIT_CACHE_HOME` environment variable. The other two can be adjusted with
Clark Boylan8784a6c2023-09-27 16:35:19 -0700532`bazelisk build` options `--repository_cache` and `--disk_cache` respectively.
Antoine Mussoff89f792021-05-04 11:14:05 +0200533
David Pursehouse42cb2932018-06-05 14:49:06 +0900534Currently none of these caches have a maximum size limit. See
Marian Harbach34253372019-12-10 18:01:31 +0100535link:https://github.com/bazelbuild/bazel/issues/5139[this bazel issue,role=external,window=_blank] for
David Pursehouse42cb2932018-06-05 14:49:06 +0900536details. Users should watch the cache sizes and clean them manually if
537necessary.
538
Dave Borowitzf04eb082018-07-16 08:51:17 -0700539[[npm-binary]]
540== NPM Binaries
541
Ben Rohlfsda0a62b2021-04-26 17:02:19 +0200542Parts of the Gerrit web app build require running NPM-based JavaScript programs
543as "binaries". We don't attempt to resolve and download NPM dependencies at
544build time, but instead use pre-built bundles of the NPM binary along with all
545its dependencies. Some packages on
Marian Harbach34253372019-12-10 18:01:31 +0100546link:https://docs.npmjs.com/misc/registry[registry.npmjs.org,role=external,window=_blank] come with their
Dave Borowitzf04eb082018-07-16 08:51:17 -0700547dependencies bundled, but this is the exception rather than the rule. More
548commonly, to add a new binary to this list, you will need to bundle the binary
549yourself.
550
551[NOTE]
552We can only use binaries that meet certain licensing requirements, and that do
553not include any native code.
554
555Start by checking that the license and file types of the bundle are acceptable:
556[source,bash]
557----
558 gerrit_repo=/path/to/gerrit
559 package=some-npm-package
560 version=1.2.3
561
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100562 # Note - yarn must be installed before running the following commands
563 yarn global add license-checker && \
Dave Borowitzf04eb082018-07-16 08:51:17 -0700564 rm -rf /tmp/$package-$version && mkdir -p /tmp/$package-$version && \
565 cd /tmp/$package-$version && \
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100566 yarn add $package@$version && \
Dave Borowitzf04eb082018-07-16 08:51:17 -0700567 license-checker | grep licenses: | sort -u
568----
569
570This will output a list of the different licenses used by the package and all
571its transitive dependencies. We can only legally distribute a bundle via our
572storage bucket if the licenses allow us to do so. As long as all of the listed
573license are allowed by
574link:https://opensource.google.com/docs/thirdparty/licenses/[Google's
Marian Harbach34253372019-12-10 18:01:31 +0100575standards,role=external,window=_blank]. Any `by_exception_only`, commercial, prohibited, or unlisted
Dave Borowitzf04eb082018-07-16 08:51:17 -0700576licenses are not allowed; otherwise, it is ok to distribute the source. If in
577doubt, contact a maintainer who is a Googler.
578
579Next, check the file types:
580[source,bash]
581----
582 cd /tmp/$package-$version
583 find . -type f | xargs file | grep -v 'ASCII\|UTF-8\|empty$'
584----
585
586If you see anything that looks like a native library or binary, then we can't
587use the bundle.
588
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100589If everything looks good, install the package with the following command:
590[source, bash]
Dave Borowitzf04eb082018-07-16 08:51:17 -0700591----
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100592# Add to ui_npm. Other packages.json can be updated in the same way
593cd $gerrit_repo/polygerrit-ui/app
Clark Boylan8784a6c2023-09-27 16:35:19 -0700594bazelisk run @nodejs//:yarn add $package
Dave Borowitzf04eb082018-07-16 08:51:17 -0700595----
596
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100597Update the `polygerrit-ui/app/node_modules_licenses/licenses.ts` file. You should add licenses
Martin Fick6b67d572023-04-04 14:23:14 -0600598for the package itself and for all transitive dependencies. If you forgot to add a license, the
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100599`Documentation:check_licenses` test will fail.
Dave Borowitzf04eb082018-07-16 08:51:17 -0700600
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100601After the update, commit all changes to the repository (including `yarn.lock`).
Dave Borowitzf04eb082018-07-16 08:51:17 -0700602
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100603[NOTE]
604====
605If a npm package has transitive dependencies (or just several files) with a not allowed
606license and you can't avoid use it in release, then you can add this package.
607For example some packages contain demo-code with a different license. Another example - optional
Ben Rohlfsda0a62b2021-04-26 17:02:19 +0200608dependencies, which are not needed to build the Gerrit web app, but they are installed together
609with the package anyway.
Dave Borowitzf04eb082018-07-16 08:51:17 -0700610
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100611In this case you should exclude all files and/or transitive dependencies with a not allowed license.
612Adding such package requires additional updates:
Dave Borowitzf04eb082018-07-16 08:51:17 -0700613
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100614- Add dependencies (or files) to the license.ts with an appropriate license marked with
615`allowed: false`.
Dave Borowitzf04eb082018-07-16 08:51:17 -0700616
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100617- update package.json postinstall script to remove all non-allowed files (if you don't
618update postinstall script, `Documentation:check_licenses` test will fail.)
619====
620
621=== Update NPM Binaries
622To update a NPM binary the same actions as for a new one must be done (check licenses,
623update `licenses.ts` file, etc...). The only difference is a command to install a package: instead
Clark Boylan8784a6c2023-09-27 16:35:19 -0700624of `bazelisk run @nodejs//:yarn add $package` you should run the `bazelisk run @nodejs//:yarn upgrade ...`
Dmitrii Filippovc2cdcce2020-01-27 12:57:42 +0100625command with correct arguments. You can find the list of arguments in the
626link:https://classic.yarnpkg.com/en/docs/cli/upgrade/[yarn upgrade doc,role=external,window=_blank].
Dave Borowitzf04eb082018-07-16 08:51:17 -0700627
628
Han-Wen Nienhuys9c15e2b2019-05-16 16:59:33 +0200629[[RBE]]
David Pursehouse0713b9a2019-05-21 12:20:26 +0900630== Google Remote Build Support
Han-Wen Nienhuys9c15e2b2019-05-16 16:59:33 +0200631
632The Bazel build can be used with Google's Remote Build Execution.
633
634
635This needs the following setup steps:
636
637```
638gcloud auth application-default login
639gcloud services enable remotebuildexecution.googleapis.com --project=${PROJECT}
640```
641
642Create a worker pool. The instances should have at least 4 CPUs each
643for adequate performance.
644
645```
646gcloud alpha remote-build-execution worker-pools create default \
647 --project=${PROJECT} \
648 --instance=default_instance \
649 --worker-count=50 \
Han-Wen Nienhuys8abed332020-04-06 16:50:38 +0200650 --machine-type=e2-standard-4 \
Han-Wen Nienhuys9c15e2b2019-05-16 16:59:33 +0200651 --disk-size=200
652```
653
David Ostrovsky65951c52020-03-28 18:23:20 +0100654Due to outdated Git version in official RBE docker images, a custom RBE docker
655image must be used. To build custom docker imager, change to the directory
656`tools/platforms` and build and publish custom RBE docker image.
657
658To build the custom RBE docker image, run:
659
660```
661docker build -t gcr.io/api-project-164060093628/rbe-ubuntu18-04 .
662```
663
664To publish the custom RBE docker image, run:
665
666```
667docker push gcr.io/api-project-164060093628/rbe-ubuntu18-04
668[...]
669latest: digest: sha256:de5186d4313630a6111f9a2449b72563d0bc59ec9fb60956f063b69a38a76834 size: 1584
670```
671
672Re-build rbe_autoconfig project conduct a new release and switch to using it
673in `WORKSPACE` file.
674
675Note, to authenticate to the gcr.io registry, the following command must be
676used:
677
678```
679gcloud auth configure-docker
680```
681
682To see the documentation, developer must be added to this group:
683https://groups.google.com/forum/#!forum/rbe-alpha-customers.
684
685Documentation can be found at:
686https://cloud.google.com/remote-build-execution/docs.
687
Han-Wen Nienhuys9c15e2b2019-05-16 16:59:33 +0200688To use RBE, execute
689
690```
Clark Boylan8784a6c2023-09-27 16:35:19 -0700691bazelisk test --config=remote \
Han-Wen Nienhuys9c15e2b2019-05-16 16:59:33 +0200692 --remote_instance_name=projects/${PROJECT}/instances/default_instance \
693 javatests/...
694```
695
696
Han-Wen Nienhuys80fcbe12016-09-22 13:16:51 +0200697GERRIT
698------
699Part of link:index.html[Gerrit Code Review]
700
701SEARCHBOX
702---------