Clone this repo:
  1. b4b70e7 Roll Swarming Client from e0ccaa0c6c8f to e36cfcd2f50b by chromium-autoroll@skia-public.iam.gserviceaccount.com · 83 minutes ago main
  2. 9e813b1 Roll Swarming Client from 0c64c336ad33 to 8593a7ed288a by chromium-autoroll@skia-public.iam.gserviceaccount.com · 30 hours ago
  3. 99e127d Roll Swarming Client from 7c97495dcc0d to 9f087496c800 by chromium-autoroll@skia-public.iam.gserviceaccount.com · 2 days ago
  4. 6351db9 Roll Swarming Client from 3df8f33fc497 to b895a9bed7f0 by chromium-autoroll@skia-public.iam.gserviceaccount.com · 6 days ago
  5. f517546 Roll CAS Client from 3df8f33fc497 to af8531728740 by chromium-autoroll@skia-public.iam.gserviceaccount.com · 6 days ago

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\nR=joe@example.com"
# 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.