commit | 572259d5546af5d8c3858169c774639e48033e44 | [log] [tgz] |
---|---|---|
author | Fumitoshi Ukai <ukai@google.com> | Thu Mar 06 07:53:59 2025 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Mar 06 07:53:59 2025 |
tree | e04a8a0f9117fe942d64b65e0b365999fc5ae5c5 | |
parent | 3d32956ebf8a7cb058d0118827e8269c86e6b351 [diff] |
siso: rebuild step if deps log is stale deps log may be stale, when build failed and step was canceled after outputs are updated and before deps log are recorded. To fix this deps log stale, next build should rebuild the step. Bug: b/401089451 Change-Id: I4c91a7427b83a3a8ca81ed94551a9bccd49e8d4f Reviewed-on: https://chromium-review.googlesource.com/c/infra/infra/+/6332430 Commit-Queue: Junji Watanabe <jwata@google.com> Auto-Submit: Fumitoshi Ukai <ukai@google.com> Reviewed-by: Junji Watanabe <jwata@google.com> Commit-Queue: Fumitoshi Ukai <ukai@google.com> Cr-Commit-Position: refs/heads/main@{#72100}
Welcome to the Chrome Infra repository!
Wondering where to start? Check out General Chrome Infrastructure documentation. In particular, to check out this repo and the rest of the infrastructure code, follow the instructions here. The rest of this page is specific to this repo.
sys.path
modifications.git push origin <updated hash>:deployed
git push
commandIf you've added a new module, run your tests with test.py:
*_test.py
files to this directory.Double-check that your tests are getting picked up when you want them to be: ./test.py test <path-to-package>
.
Tests still not getting picked up by test.py? Double-check to make sure you have __init__.py
files in each directory of your module so Python recognizes it as a package.
The preferred style is PEP8 with two-space indent; that is, the Chromium Python style, except functions use lowercase_with_underscores
. Use yapf (git cl format
) to autoformat new code.