tree: a52e9400c26820edc78369638ae750ff40c872bf [path history] [tgz]
  1. .style.yapf
  2. builder-cache-clobber.py
  3. clobber_cache_utils.py
  4. DIR_METADATA
  5. find_bad_builds.py
  6. git_utils.py
  7. named-cache-clobber.py
  8. OWNERS
  9. PRESUBMIT.py
  10. README.md
  11. reproduce.py
  12. reproduce_unittest.py
tools/infra/README.md

Directory of scripts needed for troopering.

Mass cancelling builds and tasks

If you're cancelling builds because of a bad chromium/src revision, use the find_bad_builds.py script. Example:

# Assuming that deadbeef is the git revision of the revert of 12345678, which
# landed and broke something.
./find_bad_builds.py deadbeef 12345678 | bb cancel -reason "CQ outage, see
crbug.com/XXXXXX"

To cancel many builds at once use the following command:

# Cancel scheduled builds in bucket "bucket".
bb ls -id -status scheduled chromium/bucket | bb cancel -reason unnecessary

# Cancel started builds for CI builder "builder".
bb ls -id -status started chromium/ci/builder | bb cancel -reason "bad builds"