Roll Swarming Client from 6f925b9e30ff to b8310d965e8b

https://chromium.googlesource.com/infra/infra.git/+log/6f925b9e30ff..b8310d965e8b

2025-12-09 [email protected] Roll luci-go from ecc494cb6789 to 60239e2436b0 (1 revision)
2025-12-09 [email protected] [Testhaus] Increase GCS read/write timeout
2025-12-09 [email protected] Roll luci-go from f7b1bd6c6760 to ecc494cb6789 (1 revision)
2025-12-09 [email protected] Roll luci-go from f2b13d2eff4b to f7b1bd6c6760 (1 revision)
2025-12-09 [email protected] labpack: include recovery lib changes to paris change list
2025-12-09 [email protected] Roll luci-go from 3aa3eee2103c to f2b13d2eff4b (1 revision)
2025-12-09 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (trivial).
2025-12-09 recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com Roll recipe dependencies (nontrivial).
2025-12-08 [email protected] [UFS] Add SFO32_ATC zone
2025-12-08 [email protected] CTPv2: Create root invocation and root work unit in RDB
2025-12-08 [email protected] Roll luci-go from e9565e513ef0 to 3aa3eee2103c (1 revision)
2025-12-08 [email protected] Roll chromiumos/infra/proto from e7b8309f4980 to 2ae38bcad247 (1 revision)
2025-12-08 [email protected] Roll chromiumos/config from 99c270748195 to f84c4c2279da (1 revision)
2025-12-08 [email protected] Implement adb based provision install
2025-12-08 [email protected] CTPv2: update invocation event state to respect CTP scheduling errors
2025-12-08 [email protected] recovery: Add config and trees to power-cycle OR power-on the DUT
2025-12-08 [email protected] Roll luci-go from 42d4e22188ba to e9565e513ef0 (1 revision)
2025-12-08 [email protected] Roll luci-go from 6c0c6d8c95b9 to 42d4e22188ba (1 revision)

If this roll has caused a breakage, revert this CL and stop the roller
using the controls here:
https://autoroll.skia.org/r/swarming-luci-py
Please CC [email protected],[email protected] on the revert to ensure that a human
is aware of the problem.

To file a bug in Swarming Client: https://bugs.chromium.org/p/chromium/issues/list?q=component%3AInfra%3EPlatform
To file a bug in luci-py: https://bugs.chromium.org/p/chromium/issues/list?q=component%3AInfra%3EPlatform%3ESwarming

To report a problem with the AutoRoller itself, please file a bug:
https://issues.skia.org/issues/new?component=1389291&template=1850622

Documentation for the AutoRoller is here:
https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md

Tbr: [email protected]
Change-Id: I3b19943a03974003aa36a9d5b011faf14ae8c837
Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-py/+/7240363
Commit-Queue: chromium-autoroll <[email protected]>
Bot-Commit: chromium-autoroll <[email protected]>
1 file changed
tree: 2ef5570f2bce9dcf44163020b2d60e33914d9378
  1. appengine/
  2. build/
  3. client/
  4. .gitallowed
  5. .gitattributes
  6. .gitignore
  7. .gitmodules
  8. .style.yapf
  9. .vpython
  10. .vpython3
  11. .yapfignore
  12. AUTHORS
  13. codereview.settings
  14. CODING_STYLE.md
  15. CONTRIBUTORS
  16. DEPS
  17. LICENSE
  18. OWNERS
  19. PRESUBMIT.py
  20. pylintrc
  21. README.md
  22. WATCHLISTS
README.md

LUCI

LUCI is an ensemble of services that work together to run large scale CI (continuous integration) infrastructure to get results in O(1). It is used by the Chromium project.

See appengine/ for the services provided.

Overview

A complete CI toolkit:

  • Strict separation between task distribution and file distribution.
    • Swarming distributes tasks across an army (thousands) of Swarming bots.
    • Isolate server distributes 10s of thousands of files per task.
  • Federated authentication and ACL.
  • git based configuration data propagation.
  • Automatic Google Compute Engine VM recycling.
  • Windows, OSX and Linux (Ubuntu), used with Android, iOS, ChromeOS.
  • Written in python 2.7 along Go tools.
  • Used by the Chromium infrastructure and other teams.

Installing

  1. Install Google AppEngine SDK.
  2. git clone https://chromium.googlesource.com/infra/luci/luci-py

Code layout

Versioning

  • Branch master constains the latest code.
  • Branch stable contains the stable code.

Contributing

  • Sign the Google CLA.
  • See the coding style.
  • Make sure your user.email and user.name are configured in git config.

Run the following to setup the code review tool and create your first review:

git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $HOME/src/depot_tools
export PATH="$PATH:$HOME/src/depot_tools"
cd luci-py
git checkout -b work origin/master

# hack hack

git commit -a -m "This is awesome\[email protected]"
# This will ask for your Google Account credentials.
git cl upload -s
# Wait for LGTM over email.
# Check the commit queue box in codereview website.
# Wait for the change to be tested and landed automatically.

Use git cl help and git cl help <cmd> for more details.

Style

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.

License

This project is licensed under Apache v2.0 license. See LICENSE for details.