Adapt web/ and proto/ to recent upstream build-rule migrations Two unrelated rule-set migrations landed in gerrit master and require matching adaptation here: * web/BUILD: TypeScript rules migrated from @bazel/typescript to aspect_rules_ts. Switch the ts_config + ts_project loads to @aspect_rules_ts//ts:defs.bzl; consume node_modules from //plugins:node_modules and //polygerrit-ui:node_modules (the aspect_rules_js pnpm-backed targets) instead of @plugins_npm and @ui_dev_npm; drop the explicit tsc binding (aspect_rules_ts handles it). gerrit_js_bundle moves to @com_googlesource_gerrit_bazlets//js:defs.bzl. * proto/BUILD: protobuf upstream absorbed the proto rules into @protobuf//bazel:. Switch the proto_library load from @rules_proto//proto:defs.bzl to @protobuf//bazel:proto_library.bzl, matching the @protobuf//bazel:java_proto_library.bzl path already in this file. Change-Id: If955947f657b3234b488af53764782f7108d2524
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.