tree: 1de259fb19939caa4a443faa328436bc03ad487e [path history] [tgz]
  1. api/
  2. backend/
  3. buildsource/
  4. common/
  5. frontend/
  6. git/
  7. .gitignore
  8. Makefile
  9. OWNERS
  10. README.md
milo/README.md

Milo - The UI for LUCI.

Milo is the user interface for LUCI. It displays information from Buildbucket and ResultDB about builders, builds, and test results, and can be configured to display custom consoles.

Releasing

Releases are automatically pushed to luci-milo-dev on commit by the gae-deploy builder.

To push to prod, the steps are:

  1. Get an infra_internal checkout
  2. cd data/gae
  3. vim apps/luci-milo/channels.json
  4. Modify the “stable” version in channels.json (e.g. by reusing the current staging version).
  5. Run ./main.star to regenerate the Makefile.
  6. Create a CL and add release notes to the description, as follows:
    1. Get the commit hashes from the old and new versions. E.g. in channels.json, if you changed the stable version from “31039-7badeba” to “31164-781e143”, the old commit hash is 7badeba and the new commit hash is 781e143. These correspond to commits in the infra/infra repo.
    2. Navigate to the DEPS file in the corresponding commits on Gitiles, e.g. https://chromium.googlesource.com/infra/infra/+/7badeba/DEPS (old) and https://chromium.googlesource.com/infra/infra/+/781e143/DEPS (new).
    3. Check the pinned commit of [infra/luci/luci-go] in the DEPS file at these commits. For example, the commits in this case are: 2bdb75fedc327ab79d4f514c394a90033f6be375 (old) and a4f26ffd812e4299eacf6d6ae26f01252a88164d (new).
    4. Run git log between these two commits:
      git log 2bdb75fedc32..a4f26ffd812e --date=short --first-parent --format='%ad %ae %s'
      
    5. Add the resulting command line and output to the CL description. Example: https://crrev.com/i/2962041
  7. Mail and land the CL.
  8. Send an email to luci-releases@ to let people know you've done a new release, and link to the push CL.