commit | c21ab0d5e2141e7f71773ff35f5dc1347fc60d22 | [log] [tgz] |
---|---|---|
author | Kamil Musin <kamilm@google.com> | Mon Apr 24 12:16:22 2023 +0200 |
committer | Kamil Musin <kamilm@google.com> | Mon Apr 24 12:16:22 2023 +0200 |
tree | abffded420e5442160593dfb268aa7e490c39bff | |
parent | 97febfcfbe13c951e3d75f479cc9dde9bdf44ffc [diff] |
Migrate CombinedCheckStateUpdatedSender to composition based classes We are replacing inheritance with composition for email classes. This change does the same for the emails generated by checks plugin. Google-Bug-Id: b/273913864 Release-Notes: skip Change-Id: If179443313a162d810366c9360f39885e46cf52c
The Gerrit team at Google has decided to discontinue work on the checks plugin. The recommended solution is [https://gerrit-review.googlesource.com/Documentation/pg-plugin-checks-api.html](Checks UI) which surfaces results from an external CI/analysis system.
This plugin provides a unified experience for checkers (CI systems, static analyzers, etc.) to integrate with Gerrit Code Review.
When upgrading the plugin, please use init:
java -jar gerrit.war init -d site_path
More details about “init” in https://gerrit-review.googlesource.com/Documentation/pgm-init.html
To enable sending email notifications for “checks” status updates, you'll need to create the email templates in <your-site-path>/etc/mail
. In the simplest form, simply rename the example templates:
cd "<your-site-path>" mv etc/mail/CombinedCheckStateUpdated.soy{.example,} mv etc/mail/CombinedCheckStateUpdatedHtml.soy{.example,}
For running unit tests execute:
bazel test --test_output=all //plugins/checks/web:karma_test
For checking or fixing eslint formatter problems run:
bazel test //plugins/checks/web:lint_test bazel run //plugins/checks/web:lint_bin -- --fix "$(pwd)/plugins/checks/web"
For testing the plugin with Gerrit FE Dev Helper build the JavaScript bundle and copy it to the plugins/
folder:
bazel build //plugins/checks/web:checks cp -f bazel-bin/plugins/checks/web/checks.js plugins/
and let the Dev Helper redirect from .+/plugins/checks/static/checks.js
to http://localhost:8081/plugins_/checks.js
.