Chrome Release Bot (LUCI) 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
..
dev 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
generated 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
generators 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
groups 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
lib 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
outages 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
scripts 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
subprojects 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
templates 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
validators 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
.style.yapf 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
OWNERS 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
PRESUBMIT.py 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
PRESUBMIT_test.py 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
README.md 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
chops-weetbix-dev.cfg 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
chops-weetbix.cfg 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
console-header.star 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
dev.star 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
lint-luci-milo.py 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
main.star 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
milestones.json 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
notifiers.star 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
project.star 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
project_pb2.py 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
recipes.star 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
settings.json 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
swarming.star 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година
tricium-prod.cfg 4762b62e7d Publish DEPS for 106.0.5249.13 преди 1 година

README.md

IMPORTANT: This branch only has an effect for branches that have projects set up in https://chrome-internal.googlesource.com/infradata/config/+/HEAD/configs/luci-config/projects.cfg

This directory contains chromium project-wide configurations for Chrome Operations services. For example, cr-buildbucket.cfg defines builders.

Currently active version can be checked at https://luci-config.appspot.com/#/projects/chromium .

The configuration is written using starlark, which is executed using lucicfg to generate the raw cfg files located in generated. See https://chromium.googlesource.com/infra/luci/luci-go/+/HEAD/lucicfg/doc/README.md for more information on lucicfg/starlark.

The starlark configuration is rooted in main.star and dev.star, which execute other starlark files to generate a subset of the LUCI service configuration files. A presubmit check enforces that the generated files are kept in sync with the output of the starlark configuration.

The configuration rooted at main.star defines the LUCI services configuration for the chromium project on the production instance of LUCI. The configuration is responsible for generating the raw configuration files that do not end in -dev.cfg as well as the markdown file cq-builders.md. Starlark files in the following directories are consumed by the configuration:

  • lib - Utilities for defining LUCI entities.
  • subprojects - Definitions of LUCI entities.
  • generators - Definitions of lucicfg generators that do various things to post-process the LUCI configuration before the output files are generated. (e.g. generate no-op jobs to workaround limitations of our recipe config) or generate additional files (e.g. the CQ builders markdown document).
  • validators - Definitions of lucicfg generators that perform additional validation on the the LUCI configuration (e.g. ensure all builders are added to at least one console).
  • outages - Definitions of config settings for operations common when handling outages.

The configuration rooted at dev.star defines the LUCI services configuration for the chromium project on the dev instance of LUCI. This configuration consumes starlark files under the dev directory and is responsible for generating the raw configuration files ending in -dev.cfg.