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]] |
Olivier Croquette | a909119 | 2018-01-14 20:20:56 +0100 | [diff] [blame] | 4 | == Prerequisites |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 5 | |
Olivier Croquette | a909119 | 2018-01-14 20:20:56 +0100 | [diff] [blame] | 6 | To build Gerrit from source, you need: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 7 | |
Olivier Croquette | a909119 | 2018-01-14 20:20:56 +0100 | [diff] [blame] | 8 | * A Linux or macOS system (Windows is not supported at this time) |
| 9 | * A JDK for Java 8 |
David Pursehouse | 05af76f | 2018-03-12 08:52:08 +0900 | [diff] [blame] | 10 | * Python 2 or 3 |
Olivier Croquette | a909119 | 2018-01-14 20:20:56 +0100 | [diff] [blame] | 11 | * Node.js |
| 12 | * link:https://www.bazel.io/versions/master/docs/install.html[Bazel] |
Han-Wen Nienhuys | f66222f | 2018-04-18 14:11:40 +0200 | [diff] [blame^] | 13 | * Maven |
| 14 | * zip, unzip |
| 15 | * gcc |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 16 | |
| 17 | [[build]] |
| 18 | == Building on the Command Line |
| 19 | |
| 20 | === Gerrit Development WAR File |
| 21 | |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 22 | To build the Gerrit web application that includes the GWT UI and the |
| 23 | PolyGerrit UI: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 24 | |
| 25 | ---- |
| 26 | bazel build gerrit |
| 27 | ---- |
| 28 | |
David Ostrovsky | fdbfcad | 2016-11-15 06:35:29 -0800 | [diff] [blame] | 29 | [NOTE] |
| 30 | PolyGerrit UI may require additional tools (such as npm). Please read |
| 31 | the polygerrit-ui/README.md for more info. |
| 32 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 33 | The output executable WAR will be placed in: |
| 34 | |
| 35 | ---- |
| 36 | bazel-bin/gerrit.war |
| 37 | ---- |
| 38 | |
Edwin Kempin | 976dc0b | 2016-11-14 16:34:50 -0800 | [diff] [blame] | 39 | [[release]] |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 40 | === Gerrit Release WAR File |
| 41 | |
| 42 | To build the Gerrit web application that includes the GWT UI, the |
Sven Selberg | e9897dd | 2017-12-21 15:24:29 +0100 | [diff] [blame] | 43 | PolyGerrit UI, core plugins and documentation: |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 44 | |
| 45 | ---- |
| 46 | bazel build release |
| 47 | ---- |
| 48 | |
| 49 | The output executable WAR will be placed in: |
| 50 | |
| 51 | ---- |
| 52 | bazel-bin/release.war |
| 53 | ---- |
| 54 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 55 | === Headless Mode |
| 56 | |
| 57 | To build Gerrit in headless mode, i.e. without the GWT Web UI: |
| 58 | |
| 59 | ---- |
| 60 | bazel build headless |
| 61 | ---- |
| 62 | |
| 63 | The output executable WAR will be placed in: |
| 64 | |
| 65 | ---- |
Edwin Kempin | 03eaa9a | 2016-11-14 15:45:51 -0800 | [diff] [blame] | 66 | bazel-bin/headless.war |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 67 | ---- |
| 68 | |
| 69 | === Extension and Plugin API JAR Files |
| 70 | |
| 71 | To build the extension, plugin and GWT API JAR files: |
| 72 | |
| 73 | ---- |
David Ostrovsky | 26f8da8 | 2016-12-24 09:29:33 +0100 | [diff] [blame] | 74 | bazel build api |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 75 | ---- |
| 76 | |
David Ostrovsky | 26f8da8 | 2016-12-24 09:29:33 +0100 | [diff] [blame] | 77 | The output archive that contains Java binaries, Java sources and |
| 78 | Java docs will be placed in: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 79 | |
| 80 | ---- |
David Ostrovsky | 26f8da8 | 2016-12-24 09:29:33 +0100 | [diff] [blame] | 81 | bazel-genfiles/api.zip |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 82 | ---- |
| 83 | |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 84 | Install {extension,plugin,gwt}-api to the local maven repository: |
| 85 | |
| 86 | ---- |
Edwin Kempin | d3bb302 | 2017-01-24 11:28:34 +0100 | [diff] [blame] | 87 | tools/maven/api.sh install |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 88 | ---- |
| 89 | |
| 90 | Install gerrit.war to the local maven repository: |
| 91 | |
| 92 | ---- |
Edwin Kempin | d3bb302 | 2017-01-24 11:28:34 +0100 | [diff] [blame] | 93 | tools/maven/api.sh war_install |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 94 | ---- |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 95 | |
| 96 | === Plugins |
| 97 | |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 98 | ---- |
| 99 | bazel build plugins:core |
| 100 | ---- |
| 101 | |
| 102 | The output JAR files for individual plugins will be placed in: |
| 103 | |
| 104 | ---- |
Edwin Kempin | 7e43407 | 2016-11-14 16:25:11 -0800 | [diff] [blame] | 105 | bazel-genfiles/plugins/<name>/<name>.jar |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 106 | ---- |
| 107 | |
| 108 | The JAR files will also be packaged in: |
| 109 | |
| 110 | ---- |
| 111 | bazel-genfiles/plugins/core.zip |
| 112 | ---- |
| 113 | |
| 114 | To build a specific plugin: |
| 115 | |
| 116 | ---- |
Edwin Kempin | 1ed86c7 | 2016-11-14 16:28:22 -0800 | [diff] [blame] | 117 | bazel build plugins/<name> |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 118 | ---- |
| 119 | |
| 120 | The output JAR file will be be placed in: |
| 121 | |
| 122 | ---- |
Edwin Kempin | 1ed86c7 | 2016-11-14 16:28:22 -0800 | [diff] [blame] | 123 | bazel-genfiles/plugins/<name>/<name>.jar |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 124 | ---- |
| 125 | |
| 126 | Note that when building an individual plugin, the `core.zip` package |
| 127 | is not regenerated. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 128 | |
| 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 | ---- |
David Ostrovsky | 714982e | 2017-08-24 09:43:44 +0200 | [diff] [blame] | 201 | 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 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 | ---- |
David Ostrovsky | 714982e | 2017-08-24 09:43:44 +0200 | [diff] [blame] | 207 | bazel test //javatests/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 | ---- |
David Ostrovsky | ce8ffa7 | 2017-08-29 08:23:43 +0000 | [diff] [blame] | 232 | bazel test --test_env=GERRIT_NOTEDB=ON //... |
David Ostrovsky | b14577d | 2017-03-22 08:39:47 +0100 | [diff] [blame] | 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 | |
| 247 | To ignore cached test results: |
| 248 | |
| 249 | ---- |
| 250 | bazel test --cache_test_results=NO //... |
| 251 | ---- |
| 252 | |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 253 | To run one or more specific groups of tests: |
| 254 | |
| 255 | ---- |
Jacek Centkowski | 1c41c41 | 2017-02-23 06:49:25 +0000 | [diff] [blame] | 256 | bazel test --test_tag_filters=api,git //... |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 257 | ---- |
| 258 | |
| 259 | The 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 Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 271 | == Dependencies |
| 272 | |
Han-Wen Nienhuys | 314fb11 | 2016-11-14 10:04:02 -0800 | [diff] [blame] | 273 | Dependency JARs are normally downloaded as needed, but you can |
| 274 | download everything upfront. This is useful to enable |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 275 | subsequent builds to run without network access: |
| 276 | |
| 277 | ---- |
Han-Wen Nienhuys | 314fb11 | 2016-11-14 10:04:02 -0800 | [diff] [blame] | 278 | bazel fetch //... |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 279 | ---- |
| 280 | |
| 281 | When downloading from behind a proxy (which is common in some corporate |
| 282 | environments), it might be necessary to explicitly specify the proxy that |
| 283 | is then used by `curl`: |
| 284 | |
| 285 | ---- |
| 286 | export http_proxy=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port> |
| 287 | ---- |
| 288 | |
David Ostrovsky | c0f6d4d | 2017-01-20 08:30:07 +0100 | [diff] [blame] | 289 | Redirection to local mirrors of Maven Central and the Gerrit storage |
| 290 | bucket 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 | |
| 298 | The `local.properties` file may be placed in the root of the gerrit repository |
| 299 | being built, or in `~/.gerritcodereview/`. The file in the root of the gerrit |
| 300 | repository has precedence. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 301 | |
| 302 | == Building against unpublished Maven JARs |
| 303 | |
| 304 | To build against unpublished Maven JARs, like gwtorm or PrologCafe, the custom |
| 305 | JARs 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 |
| 307 | that artifact: |
| 308 | |
| 309 | [source,python] |
| 310 | ---- |
| 311 | maven_jar( |
| 312 | name = 'gwtorm', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 313 | artifact = 'gwtorm:gwtorm:42', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 314 | repository = MAVEN_LOCAL, |
| 315 | ) |
| 316 | ---- |
| 317 | |
| 318 | == Building against artifacts from custom Maven repositories |
| 319 | |
| 320 | To build against custom Maven repositories, two modes of operations are |
| 321 | supported: with rewrite in local.properties and without. |
| 322 | |
| 323 | Without rewrite the URL of custom Maven repository can be directly passed |
| 324 | to the maven_jar() function: |
| 325 | |
| 326 | [source,python] |
| 327 | ---- |
| 328 | GERRIT_FORGE = 'http://gerritforge.com/snapshot' |
| 329 | |
| 330 | maven_jar( |
| 331 | name = 'gitblit', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 332 | artifact = 'com.gitblit:gitblit:1.4.0', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 333 | sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 334 | repository = GERRIT_FORGE, |
| 335 | ) |
| 336 | ---- |
| 337 | |
| 338 | When the custom URL has to be rewritten, then the same logic as with Gerrit |
| 339 | known Maven repository is used: Repo name must be defined that matches an entry |
| 340 | in local.properties file: |
| 341 | |
| 342 | ---- |
| 343 | download.GERRIT_FORGE = http://my.company.mirror/gerrit-forge |
| 344 | ---- |
| 345 | |
| 346 | And corresponding WORKSPACE excerpt: |
| 347 | |
| 348 | [source,python] |
| 349 | ---- |
| 350 | GERRIT_FORGE = 'GERRIT_FORGE:' |
| 351 | |
| 352 | maven_jar( |
| 353 | name = 'gitblit', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 354 | artifact = 'com.gitblit:gitblit:1.4.0', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 355 | sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 356 | repository = GERRIT_FORGE, |
| 357 | ) |
| 358 | ---- |
| 359 | |
David Ostrovsky | e51b745 | 2016-11-06 18:07:10 +0100 | [diff] [blame] | 360 | [[consume-jgit-from-development-tree]] |
| 361 | |
Han-Wen Nienhuys | ccb2666 | 2017-03-23 16:24:09 +0100 | [diff] [blame] | 362 | To consume the JGit dependency from the development tree, edit |
| 363 | `lib/jgit/jgit.bzl` setting LOCAL_JGIT_REPO to a directory holding a |
| 364 | JGit repository. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 365 | |
David Ostrovsky | 88bc372 | 2017-09-19 08:29:27 +0200 | [diff] [blame] | 366 | [[clean-download-cache]] |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 367 | === Cleaning The download cache |
| 368 | |
David Ostrovsky | 88bc372 | 2017-09-19 08:29:27 +0200 | [diff] [blame] | 369 | The cache for downloaded artifacts is located in |
Dave Borowitz | 9c35979 | 2017-11-14 08:40:55 -0500 | [diff] [blame] | 370 | `~/.gerritcodereview/bazel-cache/downloaded-artifacts`. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 371 | |
David Ostrovsky | 88bc372 | 2017-09-19 08:29:27 +0200 | [diff] [blame] | 372 | If you really do need to clean the download cache manually, then: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 373 | |
| 374 | ---- |
Dave Borowitz | 9c35979 | 2017-11-14 08:40:55 -0500 | [diff] [blame] | 375 | rm -rf ~/.gerritcodereview/bazel-cache/downloaded-artifacts |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 376 | ---- |
| 377 | |
David Ostrovsky | 88bc372 | 2017-09-19 08:29:27 +0200 | [diff] [blame] | 378 | [[local-action-cache]] |
| 379 | |
| 380 | To accelerate builds, local action cache can be activated. Note, that this |
| 381 | experimental feature is not activated per default and only available since |
| 382 | Bazel version 0.7. |
| 383 | |
| 384 | To activate the local action cache, create accessible cache directory: |
| 385 | |
| 386 | ---- |
| 387 | mkdir -p ~/.gerritcodereview/bazel-cache/cas |
| 388 | ---- |
| 389 | |
| 390 | and add these lines to your `~/.bazelrc` file: |
| 391 | |
| 392 | ---- |
| 393 | build --experimental_local_disk_cache_path=/home/<user>/.gerritcodereview/bazel-cache/cas |
| 394 | build --experimental_local_disk_cache |
| 395 | build --experimental_strict_action_env |
Dave Borowitz | ac56c313 | 2018-04-16 12:05:38 +0200 | [diff] [blame] | 396 | build --action_env=PATH |
David Ostrovsky | 88bc372 | 2017-09-19 08:29:27 +0200 | [diff] [blame] | 397 | ---- |
| 398 | |
| 399 | [NOTE] `experimental_local_disk_cache_path` must be absolute path. Expansion of `~` is |
| 400 | unfortunately not supported yet. This is also the reason why we can't activate this |
| 401 | feature by default yet (by adjusting tools/bazel.rc file). |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 402 | |
David Ostrovsky | 3b3a5eb | 2017-12-24 08:44:44 +0100 | [diff] [blame] | 403 | [[repository_cache]] |
| 404 | |
| 405 | To accelerate fetches, local repository cache can be activated. This cache is |
| 406 | only used for rules_closure external repository and transitive dependendcies. |
| 407 | That's because rules_closure uses standard Bazel download facility. For all |
| 408 | other gerrit dependencies, the download_artifacts repository cache is used |
| 409 | already. |
| 410 | |
| 411 | To activate the local repository cache, create accessible cache directory: |
| 412 | |
| 413 | ---- |
| 414 | mkdir -p ~/.gerritcodereview/bazel-cache/repository |
| 415 | ---- |
| 416 | |
| 417 | and add this line to your `~/.bazelrc` file: |
| 418 | |
| 419 | ---- |
| 420 | build --experimental_repository_cache=/home/<user>/.gerritcodereview/bazel-cache/repository |
| 421 | ---- |
| 422 | |
| 423 | [NOTE] `experimental_repository_cache` must be absolute path. Expansion of `~` is |
| 424 | unfortunately not supported yet. This is also the reason why we can't activate this |
| 425 | feature by default yet (by adjusting tools/bazel.rc file). |
| 426 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 427 | GERRIT |
| 428 | ------ |
| 429 | Part of link:index.html[Gerrit Code Review] |
| 430 | |
| 431 | SEARCHBOX |
| 432 | --------- |