Replace textual instances of "try job" with "tryjob"

The form without the space is most common:

$ find src -type f | xargs grep -i tryjob | wc -l
17
$ find src -type f | xargs grep -i 'try job' | wc -l
2

(Noticed this inconsistency in a slide from Logan's talk at the Gerrit
User Summit:
https://gerrit.googlesource.com/summit/2017/+/master/sessions/polygerrit-ux.md)

Change-Id: I125df703519c964a7fa080dda190279c65215e2c
Reviewed-on: https://chromium-review.googlesource.com/695325
Reviewed-by: Nodir Turakulov <nodir@chromium.org>
Reviewed-by: Aaron Gable <agable@chromium.org>
2 files changed
tree: f8de62dfc046726c73a79b8ec99d5fb768b20ec9
  1. src/
  2. test/
  3. .gitignore
  4. BUILD
  5. codereview.settings
  6. LICENSE
  7. README.md
  8. wct.conf.json
README.md

Buildbucket Plugin for Gerrit

Usage

This plugin is configured via the buildbucket.config file present in the repo‘s refs/meta/config ref, as well as the same file in all repositories in the repo’s inheritance chain (up to and including All-Projects).

An example buildbucket.config is below:

[host]
  git = "chromium.googlesource.com"
  gerrit = "chromium-review.googlesource.com"

[bucket "chromium.buildbucket.swarming"]
  builder = infra_presubmit
  builder = infra_linux64
  builder = infra_mac
  builder = infra_win
[bucket "tryserver.infra"]
  builder = Infra Presubmit
  builder = Infra Linux Trusty 64 Tester
  builder = Infra Linux Precise 32 Tester
  builder = Infra Mac Tester
  builder = Infra Win Tester

In the vast majority of cases, the host.git and host.gerrit values are global to the entire host, so that stanza is specified in the All-Projects repo. Buckets and builders, on the other hand, are almost always very repository-specific, and so are only specified in “leaf” repositories which are not in any other repo's inheritance chain.

All changes to buildbucket.config files are instantly reflected. There is no caching period or need to restart the server.

Development

To use with the local testsite

ln -s /path/to/buildbucket-plugin plugins/buildbucket
bazel build plugins/buildbucket && \
  rm -rf ../gerrit_testsite/plugins/buildbucket.jar && \
  cp bazel-genfiles/plugins/buildbucket/buildbucket.jar ../gerrit_testsite/plugins/ && \
  ../gerrit_testsite/bin/gerrit.sh restart

To use with the polygerrit-ui server against live data

./polygerrit-ui/run-server.sh -host chromium-review.googlesource.com -plugins
/path/to/buildbucket/src/main/resources/static

Testing

# Install dependencies.
npm install -g bower
npm install -g web-component-tester
cd test/
bower install

# Run the tests from the directory root.
cd ../
wct

Note: Testing is disabled for Safari due to this issue.