Marian Harbach | ebeb154 | 2019-12-13 10:42:46 +0100 | [diff] [blame] | 1 | :linkattrs: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 2 | = Gerrit Code Review - Building with Bazel |
| 3 | |
Han-Wen Nienhuys | 1e31803 | 2020-01-08 16:53:08 +0100 | [diff] [blame] | 4 | [[summary]] |
| 5 | == TL;DR |
| 6 | |
| 7 | If you have the prerequisites, running |
| 8 | |
| 9 | ``` |
| 10 | $ bazel build gerrit |
| 11 | ``` |
| 12 | |
| 13 | should generate a .war file under `bazel-bin/gerrit.war`. |
| 14 | |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 15 | [[installation]] |
Olivier Croquette | a909119 | 2018-01-14 20:20:56 +0100 | [diff] [blame] | 16 | == Prerequisites |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 17 | |
Olivier Croquette | a909119 | 2018-01-14 20:20:56 +0100 | [diff] [blame] | 18 | To build Gerrit from source, you need: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 19 | |
Olivier Croquette | a909119 | 2018-01-14 20:20:56 +0100 | [diff] [blame] | 20 | * A Linux or macOS system (Windows is not supported at this time) |
David Ostrovsky | 21a891c | 2020-12-19 12:57:06 +0100 | [diff] [blame] | 21 | * A JDK for Java 11 or Java 17 |
David Ostrovsky | 2b5fe09 | 2021-03-03 11:52:30 +0100 | [diff] [blame] | 22 | * Python 3 |
Marian Harbach | 3425337 | 2019-12-10 18:01:31 +0100 | [diff] [blame] | 23 | * link:https://github.com/nodesource/distributions/blob/master/README.md[Node.js (including npm),role=external,window=_blank] |
Ben Rohlfs | 11876a4 | 2020-04-27 10:16:51 +0200 | [diff] [blame] | 24 | * Bower (`npm install -g bower`) |
David Pursehouse | bfe2d14 | 2020-01-29 18:02:53 +0900 | [diff] [blame] | 25 | * link:https://docs.bazel.build/versions/master/install.html[Bazel,role=external,window=_blank] -launched with |
| 26 | link:https://github.com/bazelbuild/bazelisk[Bazelisk,role=external,window=_blank] |
Han-Wen Nienhuys | f66222f | 2018-04-18 14:11:40 +0200 | [diff] [blame] | 27 | * Maven |
| 28 | * zip, unzip |
Christian Aistleitner | 5334506 | 2020-04-27 14:37:08 +0200 | [diff] [blame] | 29 | * curl |
Han-Wen Nienhuys | f66222f | 2018-04-18 14:11:40 +0200 | [diff] [blame] | 30 | * gcc |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 31 | |
Marco Miller | 9bede91 | 2020-01-27 17:38:40 -0500 | [diff] [blame] | 32 | [[bazel]] |
| 33 | === Bazel |
| 34 | |
Ben Rohlfs | 11876a4 | 2020-04-27 10:16:51 +0200 | [diff] [blame] | 35 | link:https://github.com/bazelbuild/bazelisk[Bazelisk,role=external,window=_blank] is a version |
| 36 | manager for link:https://bazel.build/[Bazel,role=external,window=_blank], similar to how `nvm` |
| 37 | manages `npm` versions. It takes care of downloading and installing Bazel itself, so you don't have |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 38 | to worry about using the correct version of Bazel. One particular advantage to |
| 39 | using Bazelisk is that you can jump between different versions of Gerrit and not |
| 40 | worry about which version of Bazel you need. |
| 41 | |
| 42 | Bazelisk can be installed in different ways: |
| 43 | link:https://docs.bazel.build/install-bazelisk.html[Bazelisk Installation,role=external,window=_blank]. |
| 44 | To execute the correct version of Bazel using Bazelisk you simply replace |
| 45 | the `bazel` command with `bazelisk`. |
Marco Miller | 9bede91 | 2020-01-27 17:38:40 -0500 | [diff] [blame] | 46 | |
David Pursehouse | c8b633d | 2019-05-08 08:36:18 +0900 | [diff] [blame] | 47 | [[java]] |
| 48 | === Java |
| 49 | |
Matthias Sohn | 8278667 | 2021-02-25 17:19:53 +0100 | [diff] [blame] | 50 | Ensure that the link:install.html#Requirements[required Java version] |
| 51 | is installed and that `JAVA_HOME` is set to it. |
Alice Kober-Sotzek | a8029b6 | 2019-05-07 19:13:00 +0200 | [diff] [blame] | 52 | |
| 53 | To check the installed version of Java, open a terminal window and run: |
| 54 | |
| 55 | `java -version` |
| 56 | |
David Ostrovsky | b89332d | 2020-04-27 07:06:24 +0200 | [diff] [blame] | 57 | [[java-11]] |
| 58 | ==== Java 11 support |
| 59 | |
David Ostrovsky | 2f23187 | 2022-01-11 21:51:15 +0100 | [diff] [blame] | 60 | To build Gerrit with Java 11 language level, run: |
David Ostrovsky | b89332d | 2020-04-27 07:06:24 +0200 | [diff] [blame] | 61 | |
| 62 | ``` |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 63 | $ bazelisk build --java_toolchain=//tools:error_prone_warnings_toolchain_java11 :release |
David Ostrovsky | b89332d | 2020-04-27 07:06:24 +0200 | [diff] [blame] | 64 | ``` |
| 65 | |
David Ostrovsky | 21a891c | 2020-12-19 12:57:06 +0100 | [diff] [blame] | 66 | [[java-17]] |
| 67 | ==== Java 17 support |
David Pursehouse | c8b633d | 2019-05-08 08:36:18 +0900 | [diff] [blame] | 68 | |
David Ostrovsky | 21a891c | 2020-12-19 12:57:06 +0100 | [diff] [blame] | 69 | Java 17 is supported. To build Gerrit with Java 17, run: |
David Ostrovsky | f55b69f | 2018-08-23 08:25:24 +0200 | [diff] [blame] | 70 | |
| 71 | ``` |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 72 | $ bazelisk build --config=java17 :release |
David Ostrovsky | f55b69f | 2018-08-23 08:25:24 +0200 | [diff] [blame] | 73 | ``` |
| 74 | |
David Ostrovsky | 21a891c | 2020-12-19 12:57:06 +0100 | [diff] [blame] | 75 | To run the tests with Java 17, run: |
David Ostrovsky | 0bceb04 | 2018-08-25 07:37:54 +0200 | [diff] [blame] | 76 | |
| 77 | ``` |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 78 | $ bazelisk test --config=java17 //... |
David Ostrovsky | 0bceb04 | 2018-08-25 07:37:54 +0200 | [diff] [blame] | 79 | ``` |
| 80 | |
Alice Kober-Sotzek | 79290dc | 2019-05-07 19:26:18 +0200 | [diff] [blame] | 81 | === Node.js and npm packages |
Marian Harbach | 3425337 | 2019-12-10 18:01:31 +0100 | [diff] [blame] | 82 | See 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-Sotzek | 79290dc | 2019-05-07 19:26:18 +0200 | [diff] [blame] | 83 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 84 | [[build]] |
| 85 | == Building on the Command Line |
| 86 | |
| 87 | === Gerrit Development WAR File |
| 88 | |
David Ostrovsky | 7163dac | 2017-07-29 06:49:38 +0200 | [diff] [blame] | 89 | To build the Gerrit web application: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 90 | |
| 91 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 92 | bazelisk build gerrit |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 93 | ---- |
| 94 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 95 | The output executable WAR will be placed in: |
| 96 | |
| 97 | ---- |
| 98 | bazel-bin/gerrit.war |
| 99 | ---- |
| 100 | |
Edwin Kempin | 976dc0b | 2016-11-14 16:34:50 -0800 | [diff] [blame] | 101 | [[release]] |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 102 | === Gerrit Release WAR File |
| 103 | |
Ben Rohlfs | da0a62b | 2021-04-26 17:02:19 +0200 | [diff] [blame] | 104 | To build the Gerrit web application that includes the Gerrit UI, |
David Ostrovsky | 7163dac | 2017-07-29 06:49:38 +0200 | [diff] [blame] | 105 | core plugins and documentation: |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 106 | |
| 107 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 108 | bazelisk build release |
Edwin Kempin | 3cfce17 | 2016-11-14 16:17:17 -0800 | [diff] [blame] | 109 | ---- |
| 110 | |
| 111 | The output executable WAR will be placed in: |
| 112 | |
| 113 | ---- |
| 114 | bazel-bin/release.war |
| 115 | ---- |
| 116 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 117 | === Headless Mode |
| 118 | |
Ben Rohlfs | da0a62b | 2021-04-26 17:02:19 +0200 | [diff] [blame] | 119 | To build Gerrit in headless mode, i.e. without the Gerrit UI: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 120 | |
| 121 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 122 | bazelisk build headless |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 123 | ---- |
| 124 | |
| 125 | The output executable WAR will be placed in: |
| 126 | |
| 127 | ---- |
Edwin Kempin | 03eaa9a | 2016-11-14 15:45:51 -0800 | [diff] [blame] | 128 | bazel-bin/headless.war |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 129 | ---- |
| 130 | |
| 131 | === Extension and Plugin API JAR Files |
| 132 | |
David Ostrovsky | 7163dac | 2017-07-29 06:49:38 +0200 | [diff] [blame] | 133 | To build the extension, plugin and acceptance-framework JAR files: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 134 | |
| 135 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 136 | bazelisk build api |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 137 | ---- |
| 138 | |
David Ostrovsky | 26f8da8 | 2016-12-24 09:29:33 +0100 | [diff] [blame] | 139 | The output archive that contains Java binaries, Java sources and |
| 140 | Java docs will be placed in: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 141 | |
| 142 | ---- |
Luca Milanesio | 5bd7b9b | 2019-06-10 10:01:02 +0100 | [diff] [blame] | 143 | bazel-bin/api.zip |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 144 | ---- |
| 145 | |
David Ostrovsky | 7163dac | 2017-07-29 06:49:38 +0200 | [diff] [blame] | 146 | Install {extension,plugin,acceptance-framework}-api to the local |
| 147 | maven repository: |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 148 | |
| 149 | ---- |
Edwin Kempin | d3bb302 | 2017-01-24 11:28:34 +0100 | [diff] [blame] | 150 | tools/maven/api.sh install |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 151 | ---- |
| 152 | |
| 153 | Install gerrit.war to the local maven repository: |
| 154 | |
| 155 | ---- |
Edwin Kempin | d3bb302 | 2017-01-24 11:28:34 +0100 | [diff] [blame] | 156 | tools/maven/api.sh war_install |
David Ostrovsky | 50785fd | 2016-10-28 09:17:14 +0200 | [diff] [blame] | 157 | ---- |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 158 | |
| 159 | === Plugins |
| 160 | |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 161 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 162 | bazelisk build plugins:core |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 163 | ---- |
| 164 | |
| 165 | The output JAR files for individual plugins will be placed in: |
| 166 | |
| 167 | ---- |
Luca Milanesio | 5bd7b9b | 2019-06-10 10:01:02 +0100 | [diff] [blame] | 168 | bazel-bin/plugins/<name>/<name>.jar |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 169 | ---- |
| 170 | |
| 171 | The JAR files will also be packaged in: |
| 172 | |
| 173 | ---- |
Luca Milanesio | 5bd7b9b | 2019-06-10 10:01:02 +0100 | [diff] [blame] | 174 | bazel-bin/plugins/core.zip |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 175 | ---- |
| 176 | |
| 177 | To build a specific plugin: |
| 178 | |
| 179 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 180 | bazelisk build plugins/<name> |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 181 | ---- |
| 182 | |
| 183 | The output JAR file will be be placed in: |
| 184 | |
| 185 | ---- |
Luca Milanesio | 5bd7b9b | 2019-06-10 10:01:02 +0100 | [diff] [blame] | 186 | bazel-bin/plugins/<name>/<name>.jar |
David Ostrovsky | af71968 | 2016-09-28 20:31:18 +0200 | [diff] [blame] | 187 | ---- |
| 188 | |
| 189 | Note that when building an individual plugin, the `core.zip` package |
| 190 | is not regenerated. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 191 | |
Han-Wen Nienhuys | 8ba8abe | 2016-10-25 15:54:28 +0200 | [diff] [blame] | 192 | [[IDEs]] |
| 193 | == Using an IDE. |
| 194 | |
| 195 | === IntelliJ |
| 196 | |
Marian Harbach | 3425337 | 2019-12-10 18:01:31 +0100 | [diff] [blame] | 197 | The Gerrit build works with Bazel's link:https://ij.bazel.build[IntelliJ plugin,role=external,window=_blank]. |
Alice Kober-Sotzek | d9da89f | 2016-11-25 12:02:18 +0100 | [diff] [blame] | 198 | Please follow the instructions on <<dev-intellij#,IntelliJ Setup>>. |
David Ostrovsky | c69f360 | 2016-11-13 08:01:08 -0800 | [diff] [blame] | 199 | |
| 200 | === Eclipse |
| 201 | |
| 202 | ==== Generating the Eclipse Project |
| 203 | |
| 204 | Create the Eclipse project: |
| 205 | |
| 206 | ---- |
David Pursehouse | 7e43d1d | 2017-01-24 08:45:16 +0900 | [diff] [blame] | 207 | tools/eclipse/project.py |
David Ostrovsky | c69f360 | 2016-11-13 08:01:08 -0800 | [diff] [blame] | 208 | ---- |
| 209 | |
| 210 | and then follow the link:dev-eclipse.html#setup[setup instructions]. |
| 211 | |
| 212 | ==== Refreshing the Classpath |
| 213 | |
| 214 | If an updated classpath is needed, the Eclipse project can be |
| 215 | refreshed and missing dependency JARs can be downloaded by running |
David Pursehouse | 7e43d1d | 2017-01-24 08:45:16 +0900 | [diff] [blame] | 216 | `project.py` again. For IntelliJ, you need to click the `Sync Project |
Marian Harbach | 3425337 | 2019-12-10 18:01:31 +0100 | [diff] [blame] | 217 | with BUILD Files` button of link:https://ij.bazel.build[Bazel plugin,role=external,window=_blank]. |
David Ostrovsky | c69f360 | 2016-11-13 08:01:08 -0800 | [diff] [blame] | 218 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 219 | [[documentation]] |
Nasser Grainawi | a55b20d | 2021-03-08 11:52:01 -0700 | [diff] [blame] | 220 | == Documentation |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 221 | |
David Ostrovsky | 9413ff8 | 2016-10-25 00:02:17 +0200 | [diff] [blame] | 222 | To build only the documentation for testing or static hosting: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 223 | |
David Ostrovsky | 9413ff8 | 2016-10-25 00:02:17 +0200 | [diff] [blame] | 224 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 225 | bazelisk build Documentation:searchfree |
David Ostrovsky | 9413ff8 | 2016-10-25 00:02:17 +0200 | [diff] [blame] | 226 | ---- |
| 227 | |
| 228 | The html files will be bundled into `searchfree.zip` in this location: |
| 229 | |
| 230 | ---- |
| 231 | bazel-bin/Documentation/searchfree.zip |
| 232 | ---- |
| 233 | |
Antoine Musso | 8e4ae54 | 2020-12-22 12:09:16 +0100 | [diff] [blame] | 234 | To generate HTML files skipping the zip archiving: |
| 235 | |
| 236 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 237 | bazelisk build Documentation |
Antoine Musso | 8e4ae54 | 2020-12-22 12:09:16 +0100 | [diff] [blame] | 238 | ---- |
| 239 | |
| 240 | And open `bazel-bin/Documentation/index.html`. |
| 241 | |
| 242 | To build the Gerrit executable WAR with the documentation included: |
David Ostrovsky | 9413ff8 | 2016-10-25 00:02:17 +0200 | [diff] [blame] | 243 | |
| 244 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 245 | bazelisk build withdocs |
David Ostrovsky | 9413ff8 | 2016-10-25 00:02:17 +0200 | [diff] [blame] | 246 | ---- |
| 247 | |
| 248 | The WAR file will be placed in: |
| 249 | |
| 250 | ---- |
| 251 | bazel-bin/withdocs.war |
| 252 | ---- |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 253 | |
Antoine Musso | 524b056 | 2020-11-18 10:36:05 +0100 | [diff] [blame] | 254 | Alternatively, one can generate the documentation as flat files: |
| 255 | |
| 256 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 257 | bazelisk build Documentation:Documentation |
Antoine Musso | 524b056 | 2020-11-18 10:36:05 +0100 | [diff] [blame] | 258 | ---- |
| 259 | |
| 260 | The html, css, js files are placed in: |
| 261 | |
| 262 | ---- |
| 263 | `bazel-bin/Documentation/` |
| 264 | ---- |
| 265 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 266 | [[tests]] |
| 267 | == Running Unit Tests |
| 268 | |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 269 | Bazel BUILD files define test targets for Gerrit. You can run all declared |
| 270 | test targets with: |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 271 | |
| 272 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 273 | bazelisk test --build_tests_only //... |
Edwin Kempin | d31903c | 2016-11-14 17:01:44 -0800 | [diff] [blame] | 274 | ---- |
| 275 | |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 276 | [[testgroups]] |
| 277 | === Running Test Groups |
| 278 | |
| 279 | To run one or more specific labeled groups of tests: |
Edwin Kempin | d31903c | 2016-11-14 17:01:44 -0800 | [diff] [blame] | 280 | |
| 281 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 282 | bazelisk test --test_tag_filters=api,git //... |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 283 | ---- |
| 284 | |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 285 | The following label values are currently supported for the group name: |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 286 | |
| 287 | * annotation |
| 288 | * api |
| 289 | * edit |
| 290 | * git |
David Pursehouse | 180bca5 | 2019-12-04 20:05:07 +0900 | [diff] [blame] | 291 | * git-protocol-v2 |
David Ostrovsky | 61a44ae | 2020-05-14 08:29:54 +0200 | [diff] [blame] | 292 | * git-upload-archive |
David Pursehouse | 4444518 | 2017-02-22 15:59:17 +0900 | [diff] [blame] | 293 | * notedb |
| 294 | * pgm |
| 295 | * rest |
| 296 | * server |
| 297 | * ssh |
| 298 | |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 299 | We can also select tests within a specific BUILD target group. For example |
| 300 | `javatests/com/google/gerrit/acceptance/rest/account/BUILD` declares a |
| 301 | rest_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 | |
| 310 | To debug specific tests you will need to select the test target containing |
| 311 | that test then use `--test_filter` to select the specific test you want. |
| 312 | This `--test_filter` is a regex and can be used to select multiple tests |
| 313 | out of the target: |
| 314 | |
| 315 | ---- |
| 316 | bazelisk test --test_output=streamed --test_filter=com.gerrit.TestClass.testMethod testTarget |
| 317 | ---- |
| 318 | |
| 319 | For example `javatests/com/google/gerrit/acceptance/api/change/BUILD` |
| 320 | defines a test target group for every `*IT.java` file in the directory. |
| 321 | We can execute the single `getAmbiguous()` test found in ChangeIT.java using |
| 322 | this `--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 | |
| 333 | To run only tests that do not use SSH: |
| 334 | |
| 335 | ---- |
| 336 | bazelisk test --test_env=GERRIT_USE_SSH=NO //... |
| 337 | ---- |
| 338 | |
| 339 | To exclude tests that have been marked as flaky: |
| 340 | |
| 341 | ---- |
| 342 | bazelisk test --test_tag_filters=-flaky //... |
| 343 | ---- |
| 344 | |
| 345 | To exclude tests that require very recent git client version: |
| 346 | |
| 347 | ---- |
| 348 | bazelisk test --test_tag_filters=-git-protocol-v2 //... |
| 349 | ---- |
| 350 | |
| 351 | To run the tests against a specific index backend (LUCENE, FAKE): |
| 352 | ---- |
| 353 | bazelisk test --test_env=GERRIT_INDEX_TYPE=LUCENE //... |
| 354 | ---- |
| 355 | |
Nasser Grainawi | 02f5345 | 2021-02-19 08:17:49 -0700 | [diff] [blame] | 356 | Bazel itself supports a multitude of ways to |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 357 | link:https://bazel.build/run/build#specifying-build-targets[specify targets,role=external,window=_blank] |
Nasser Grainawi | 02f5345 | 2021-02-19 08:17:49 -0700 | [diff] [blame] | 358 | for fine-grained test selection that can be combined with many of the examples |
| 359 | above. |
| 360 | |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 361 | [[testcaching]] |
| 362 | === Test Caching |
| 363 | |
| 364 | By default Bazel caches test results and will not reexecute tests unless they |
| 365 | or their dependencies have been modified. To ignore cached test results and |
| 366 | force the tests to rerun: |
| 367 | |
| 368 | ---- |
| 369 | bazelisk test --cache_test_results=NO //... |
| 370 | ---- |
| 371 | |
| 372 | [[plugintests]] |
| 373 | === Running Plugin Tests |
| 374 | |
| 375 | Running tests for Gerrit plugins follows the process above. From within the |
| 376 | Gerrit project root with the desired plugins checked out into `plugins/` we |
| 377 | execute Bazel with the appropriate target: |
| 378 | |
| 379 | ---- |
| 380 | bazelisk test //plugins/replication/... |
| 381 | ---- |
| 382 | |
Saša Živkov | 1b716dd | 2021-03-12 17:03:33 +0100 | [diff] [blame] | 383 | [[debugging-tests]] |
| 384 | == Debugging Unit Tests |
| 385 | In some cases it may be necessary to debug a test while running it in bazel. For example, when we |
| 386 | observe a different test result in Eclipse and bazel. Using the `--java_debug` option will start the |
| 387 | JVM in debug mode and await for a remote debugger to attach. |
| 388 | |
| 389 | Example: |
| 390 | [source,bash] |
| 391 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 392 | bazelisk test --java_debug --test_tag_filters=delete-project //... |
Saša Živkov | 1b716dd | 2021-03-12 17:03:33 +0100 | [diff] [blame] | 393 | ... |
| 394 | Listening for transport dt_socket at address: 5005 |
| 395 | ... |
| 396 | ---- |
| 397 | |
| 398 | Now attach with a debugger to the port `5005`. For example use "Remote Java Application" launch |
Martin Fick | 6b67d57 | 2023-04-04 14:23:14 -0600 | [diff] [blame] | 399 | configuration in Eclipse and specify the port `5005`. |
Saša Živkov | 1b716dd | 2021-03-12 17:03:33 +0100 | [diff] [blame] | 400 | |
David Ostrovsky | 17ef127 | 2020-02-16 14:51:07 +0100 | [diff] [blame] | 401 | [[logging]] |
| 402 | === Controlling logging level |
Hamza Kaced | c54e6b5 | 2020-01-24 12:59:09 -0500 | [diff] [blame] | 403 | |
David Ostrovsky | 17ef127 | 2020-02-16 14:51:07 +0100 | [diff] [blame] | 404 | Per default, logging level is set to `INFO` level for all tests. The `DEBUG` |
| 405 | log level can be enabled for the tests. |
Hamza Kaced | c54e6b5 | 2020-01-24 12:59:09 -0500 | [diff] [blame] | 406 | |
David Ostrovsky | 17ef127 | 2020-02-16 14:51:07 +0100 | [diff] [blame] | 407 | In IDE, set `-Dgerrit.logLevel=debug` as a VM argument. With `bazel`, pass |
| 408 | `GERRIT_LOG_LEVEL=debug` environment variable: |
Hamza Kaced | c54e6b5 | 2020-01-24 12:59:09 -0500 | [diff] [blame] | 409 | |
| 410 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 411 | 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 Kaced | c54e6b5 | 2020-01-24 12:59:09 -0500 | [diff] [blame] | 414 | ---- |
| 415 | |
David Ostrovsky | 17ef127 | 2020-02-16 14:51:07 +0100 | [diff] [blame] | 416 | The log results can be found in: |
| 417 | `bazel-testlogs/javatests/com/google/gerrit/server/server_tests/test.log`. |
| 418 | |
| 419 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 420 | == Dependencies |
| 421 | |
Han-Wen Nienhuys | 314fb11 | 2016-11-14 10:04:02 -0800 | [diff] [blame] | 422 | Dependency JARs are normally downloaded as needed, but you can |
| 423 | download everything upfront. This is useful to enable |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 424 | subsequent builds to run without network access: |
| 425 | |
| 426 | ---- |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 427 | bazelisk fetch //... |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 428 | ---- |
| 429 | |
| 430 | When downloading from behind a proxy (which is common in some corporate |
| 431 | environments), it might be necessary to explicitly specify the proxy that |
| 432 | is then used by `curl`: |
| 433 | |
| 434 | ---- |
| 435 | export http_proxy=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port> |
| 436 | ---- |
| 437 | |
David Ostrovsky | c0f6d4d | 2017-01-20 08:30:07 +0100 | [diff] [blame] | 438 | Redirection to local mirrors of Maven Central and the Gerrit storage |
| 439 | bucket 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 | |
| 447 | The `local.properties` file may be placed in the root of the gerrit repository |
| 448 | being built, or in `~/.gerritcodereview/`. The file in the root of the gerrit |
| 449 | repository has precedence. |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 450 | |
| 451 | == Building against unpublished Maven JARs |
| 452 | |
Dave Borowitz | 8626f87 | 2019-04-19 14:34:36 -0700 | [diff] [blame] | 453 | To build against unpublished Maven JARs, like PrologCafe, the custom JARs must |
| 454 | be installed in the local Maven repository (`mvn clean install`) and |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 455 | `maven_jar()` must be updated to point to the `MAVEN_LOCAL` Maven repository for |
| 456 | that artifact: |
| 457 | |
| 458 | [source,python] |
| 459 | ---- |
| 460 | maven_jar( |
Dave Borowitz | 8626f87 | 2019-04-19 14:34:36 -0700 | [diff] [blame] | 461 | name = 'prolog-runtime', |
| 462 | artifact = 'com.googlecode.prolog-cafe:prolog-runtime:42', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 463 | repository = MAVEN_LOCAL, |
| 464 | ) |
| 465 | ---- |
| 466 | |
| 467 | == Building against artifacts from custom Maven repositories |
| 468 | |
| 469 | To build against custom Maven repositories, two modes of operations are |
| 470 | supported: with rewrite in local.properties and without. |
| 471 | |
| 472 | Without rewrite the URL of custom Maven repository can be directly passed |
| 473 | to the maven_jar() function: |
| 474 | |
| 475 | [source,python] |
| 476 | ---- |
| 477 | GERRIT_FORGE = 'http://gerritforge.com/snapshot' |
| 478 | |
| 479 | maven_jar( |
| 480 | name = 'gitblit', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 481 | artifact = 'com.gitblit:gitblit:1.4.0', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 482 | sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 483 | repository = GERRIT_FORGE, |
| 484 | ) |
| 485 | ---- |
| 486 | |
| 487 | When the custom URL has to be rewritten, then the same logic as with Gerrit |
| 488 | known Maven repository is used: Repo name must be defined that matches an entry |
| 489 | in local.properties file: |
| 490 | |
| 491 | ---- |
| 492 | download.GERRIT_FORGE = http://my.company.mirror/gerrit-forge |
| 493 | ---- |
| 494 | |
| 495 | And corresponding WORKSPACE excerpt: |
| 496 | |
| 497 | [source,python] |
| 498 | ---- |
| 499 | GERRIT_FORGE = 'GERRIT_FORGE:' |
| 500 | |
| 501 | maven_jar( |
| 502 | name = 'gitblit', |
Paladox none | dab92ab | 2017-01-28 22:56:33 +0000 | [diff] [blame] | 503 | artifact = 'com.gitblit:gitblit:1.4.0', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 504 | sha1 = '1b130dbf5578ace37507430a4a523f6594bf34fa', |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 505 | repository = GERRIT_FORGE, |
| 506 | ) |
| 507 | ---- |
| 508 | |
David Ostrovsky | ad61c85 | 2019-01-14 07:11:04 +0100 | [diff] [blame] | 509 | == Building against SNAPSHOT Maven JARs |
| 510 | |
| 511 | To 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 Ostrovsky | 2bf355d | 2018-05-30 08:58:22 +0200 | [diff] [blame] | 522 | [[bazel-local-caches]] |
David Ostrovsky | 88bc372 | 2017-09-19 08:29:27 +0200 | [diff] [blame] | 523 | |
David Pursehouse | 42cb293 | 2018-06-05 14:49:06 +0900 | [diff] [blame] | 524 | To accelerate builds, several caches are activated per default: |
David Ostrovsky | 2bf355d | 2018-05-30 08:58:22 +0200 | [diff] [blame] | 525 | |
| 526 | * ~/.gerritcodereview/bazel-cache/downloaded-artifacts |
| 527 | * ~/.gerritcodereview/bazel-cache/repository |
| 528 | * ~/.gerritcodereview/bazel-cache/cas |
| 529 | |
Antoine Musso | ff89f79 | 2021-05-04 11:14:05 +0200 | [diff] [blame] | 530 | The `downloaded-artifacts` cache can be relocated by setting the |
| 531 | `GERRIT_CACHE_HOME` environment variable. The other two can be adjusted with |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 532 | `bazelisk build` options `--repository_cache` and `--disk_cache` respectively. |
Antoine Musso | ff89f79 | 2021-05-04 11:14:05 +0200 | [diff] [blame] | 533 | |
David Pursehouse | 42cb293 | 2018-06-05 14:49:06 +0900 | [diff] [blame] | 534 | Currently none of these caches have a maximum size limit. See |
Marian Harbach | 3425337 | 2019-12-10 18:01:31 +0100 | [diff] [blame] | 535 | link:https://github.com/bazelbuild/bazel/issues/5139[this bazel issue,role=external,window=_blank] for |
David Pursehouse | 42cb293 | 2018-06-05 14:49:06 +0900 | [diff] [blame] | 536 | details. Users should watch the cache sizes and clean them manually if |
| 537 | necessary. |
| 538 | |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 539 | [[npm-binary]] |
| 540 | == NPM Binaries |
| 541 | |
Ben Rohlfs | da0a62b | 2021-04-26 17:02:19 +0200 | [diff] [blame] | 542 | Parts of the Gerrit web app build require running NPM-based JavaScript programs |
| 543 | as "binaries". We don't attempt to resolve and download NPM dependencies at |
| 544 | build time, but instead use pre-built bundles of the NPM binary along with all |
| 545 | its dependencies. Some packages on |
Marian Harbach | 3425337 | 2019-12-10 18:01:31 +0100 | [diff] [blame] | 546 | link:https://docs.npmjs.com/misc/registry[registry.npmjs.org,role=external,window=_blank] come with their |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 547 | dependencies bundled, but this is the exception rather than the rule. More |
| 548 | commonly, to add a new binary to this list, you will need to bundle the binary |
| 549 | yourself. |
| 550 | |
| 551 | [NOTE] |
| 552 | We can only use binaries that meet certain licensing requirements, and that do |
| 553 | not include any native code. |
| 554 | |
| 555 | Start 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 Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 562 | # Note - yarn must be installed before running the following commands |
| 563 | yarn global add license-checker && \ |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 564 | rm -rf /tmp/$package-$version && mkdir -p /tmp/$package-$version && \ |
| 565 | cd /tmp/$package-$version && \ |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 566 | yarn add $package@$version && \ |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 567 | license-checker | grep licenses: | sort -u |
| 568 | ---- |
| 569 | |
| 570 | This will output a list of the different licenses used by the package and all |
| 571 | its transitive dependencies. We can only legally distribute a bundle via our |
| 572 | storage bucket if the licenses allow us to do so. As long as all of the listed |
| 573 | license are allowed by |
| 574 | link:https://opensource.google.com/docs/thirdparty/licenses/[Google's |
Marian Harbach | 3425337 | 2019-12-10 18:01:31 +0100 | [diff] [blame] | 575 | standards,role=external,window=_blank]. Any `by_exception_only`, commercial, prohibited, or unlisted |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 576 | licenses are not allowed; otherwise, it is ok to distribute the source. If in |
| 577 | doubt, contact a maintainer who is a Googler. |
| 578 | |
| 579 | Next, 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 | |
| 586 | If you see anything that looks like a native library or binary, then we can't |
| 587 | use the bundle. |
| 588 | |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 589 | If everything looks good, install the package with the following command: |
| 590 | [source, bash] |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 591 | ---- |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 592 | # Add to ui_npm. Other packages.json can be updated in the same way |
| 593 | cd $gerrit_repo/polygerrit-ui/app |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 594 | bazelisk run @nodejs//:yarn add $package |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 595 | ---- |
| 596 | |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 597 | Update the `polygerrit-ui/app/node_modules_licenses/licenses.ts` file. You should add licenses |
Martin Fick | 6b67d57 | 2023-04-04 14:23:14 -0600 | [diff] [blame] | 598 | for the package itself and for all transitive dependencies. If you forgot to add a license, the |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 599 | `Documentation:check_licenses` test will fail. |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 600 | |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 601 | After the update, commit all changes to the repository (including `yarn.lock`). |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 602 | |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 603 | [NOTE] |
| 604 | ==== |
| 605 | If a npm package has transitive dependencies (or just several files) with a not allowed |
| 606 | license and you can't avoid use it in release, then you can add this package. |
| 607 | For example some packages contain demo-code with a different license. Another example - optional |
Ben Rohlfs | da0a62b | 2021-04-26 17:02:19 +0200 | [diff] [blame] | 608 | dependencies, which are not needed to build the Gerrit web app, but they are installed together |
| 609 | with the package anyway. |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 610 | |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 611 | In this case you should exclude all files and/or transitive dependencies with a not allowed license. |
| 612 | Adding such package requires additional updates: |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 613 | |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 614 | - Add dependencies (or files) to the license.ts with an appropriate license marked with |
| 615 | `allowed: false`. |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 616 | |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 617 | - update package.json postinstall script to remove all non-allowed files (if you don't |
| 618 | update postinstall script, `Documentation:check_licenses` test will fail.) |
| 619 | ==== |
| 620 | |
| 621 | === Update NPM Binaries |
| 622 | To update a NPM binary the same actions as for a new one must be done (check licenses, |
| 623 | update `licenses.ts` file, etc...). The only difference is a command to install a package: instead |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 624 | of `bazelisk run @nodejs//:yarn add $package` you should run the `bazelisk run @nodejs//:yarn upgrade ...` |
Dmitrii Filippov | c2cdcce | 2020-01-27 12:57:42 +0100 | [diff] [blame] | 625 | command with correct arguments. You can find the list of arguments in the |
| 626 | link:https://classic.yarnpkg.com/en/docs/cli/upgrade/[yarn upgrade doc,role=external,window=_blank]. |
Dave Borowitz | f04eb08 | 2018-07-16 08:51:17 -0700 | [diff] [blame] | 627 | |
| 628 | |
Han-Wen Nienhuys | 9c15e2b | 2019-05-16 16:59:33 +0200 | [diff] [blame] | 629 | [[RBE]] |
David Pursehouse | 0713b9a | 2019-05-21 12:20:26 +0900 | [diff] [blame] | 630 | == Google Remote Build Support |
Han-Wen Nienhuys | 9c15e2b | 2019-05-16 16:59:33 +0200 | [diff] [blame] | 631 | |
| 632 | The Bazel build can be used with Google's Remote Build Execution. |
| 633 | |
| 634 | |
| 635 | This needs the following setup steps: |
| 636 | |
| 637 | ``` |
| 638 | gcloud auth application-default login |
| 639 | gcloud services enable remotebuildexecution.googleapis.com --project=${PROJECT} |
| 640 | ``` |
| 641 | |
| 642 | Create a worker pool. The instances should have at least 4 CPUs each |
| 643 | for adequate performance. |
| 644 | |
| 645 | ``` |
| 646 | gcloud alpha remote-build-execution worker-pools create default \ |
| 647 | --project=${PROJECT} \ |
| 648 | --instance=default_instance \ |
| 649 | --worker-count=50 \ |
Han-Wen Nienhuys | 8abed33 | 2020-04-06 16:50:38 +0200 | [diff] [blame] | 650 | --machine-type=e2-standard-4 \ |
Han-Wen Nienhuys | 9c15e2b | 2019-05-16 16:59:33 +0200 | [diff] [blame] | 651 | --disk-size=200 |
| 652 | ``` |
| 653 | |
David Ostrovsky | 65951c5 | 2020-03-28 18:23:20 +0100 | [diff] [blame] | 654 | Due to outdated Git version in official RBE docker images, a custom RBE docker |
| 655 | image must be used. To build custom docker imager, change to the directory |
| 656 | `tools/platforms` and build and publish custom RBE docker image. |
| 657 | |
| 658 | To build the custom RBE docker image, run: |
| 659 | |
| 660 | ``` |
| 661 | docker build -t gcr.io/api-project-164060093628/rbe-ubuntu18-04 . |
| 662 | ``` |
| 663 | |
| 664 | To publish the custom RBE docker image, run: |
| 665 | |
| 666 | ``` |
| 667 | docker push gcr.io/api-project-164060093628/rbe-ubuntu18-04 |
| 668 | [...] |
| 669 | latest: digest: sha256:de5186d4313630a6111f9a2449b72563d0bc59ec9fb60956f063b69a38a76834 size: 1584 |
| 670 | ``` |
| 671 | |
| 672 | Re-build rbe_autoconfig project conduct a new release and switch to using it |
| 673 | in `WORKSPACE` file. |
| 674 | |
| 675 | Note, to authenticate to the gcr.io registry, the following command must be |
| 676 | used: |
| 677 | |
| 678 | ``` |
| 679 | gcloud auth configure-docker |
| 680 | ``` |
| 681 | |
| 682 | To see the documentation, developer must be added to this group: |
| 683 | https://groups.google.com/forum/#!forum/rbe-alpha-customers. |
| 684 | |
| 685 | Documentation can be found at: |
| 686 | https://cloud.google.com/remote-build-execution/docs. |
| 687 | |
Han-Wen Nienhuys | 9c15e2b | 2019-05-16 16:59:33 +0200 | [diff] [blame] | 688 | To use RBE, execute |
| 689 | |
| 690 | ``` |
Clark Boylan | 8784a6c | 2023-09-27 16:35:19 -0700 | [diff] [blame^] | 691 | bazelisk test --config=remote \ |
Han-Wen Nienhuys | 9c15e2b | 2019-05-16 16:59:33 +0200 | [diff] [blame] | 692 | --remote_instance_name=projects/${PROJECT}/instances/default_instance \ |
| 693 | javatests/... |
| 694 | ``` |
| 695 | |
| 696 | |
Han-Wen Nienhuys | 80fcbe1 | 2016-09-22 13:16:51 +0200 | [diff] [blame] | 697 | GERRIT |
| 698 | ------ |
| 699 | Part of link:index.html[Gerrit Code Review] |
| 700 | |
| 701 | SEARCHBOX |
| 702 | --------- |