[cq] retry builders that timed out

Currently only test failures are being retried in cq, and tests that
hang are not considered as test failures.

Given that we see a few test timeouts every day, and those CQ jobs require
manual retries, I think we should consider those like normal test
failures and retry automatically.

Change-Id: Ib2b2fdccad5ec12e440a859257e702175c1805a3
2 files changed
tree: d995d33dc0e1897334db80c6a881bc08f8c6da8f
  1. generated/
  2. lib/
  3. manifest/
  4. repositories/
  5. .gitignore
  6. .style.yapf
  7. AUTHORS
  8. LICENSE
  9. main.star
  10. MAINTAINERS
  11. OWNERS
  12. PATENTS
  13. README.md
README.md

Config

This repository contains configuration files for infra services.

For the most part, the actual configs consumed by LUCI live under generated/. Those files are generated by executing the .star files at the root of the repository. Don't edit the generated files directly. Instead, edit the Starlark files and execute them to regenerate the generated/ files.

If you've checked out the infra repos using our Jiri manifest, then you should have a git hook that will automatically execute the starlark code and regenerate generated/*.cfg on git commit.

To manually execute the Starlark code, run:

../../fuchsia-infra/prebuilt/tools/lucicfg generate ./main.star

Or if you have lucicfg in your PATH, you can execute the .star files directly:

./main.star

References