1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
#!/usr/bin/env lucicfg
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# See https://chromium.googlesource.com/infra/luci/luci-go/+/HEAD/lucicfg/doc/README.md
# for information on starlark/lucicfg
load("//lib/branches.star", "branches")
load("//lib/chrome_settings.star", "chrome_settings")
load("//project.star", "settings")
lucicfg.check_version(
min = "1.40.0",
message = "Update depot_tools",
)
# Use LUCI Scheduler BBv2 names and add Scheduler realms configs.
lucicfg.enable_experiment("crbug.com/1182002")
# Tell lucicfg what files it is allowed to touch
lucicfg.config(
config_dir = "generated",
tracked_files = [
"builders/*/*/*",
"builders/gn_args_locations.json",
"cq-builders.md",
"cq-usage/default.cfg",
"cq-usage/full.cfg",
"cq-usage/mega_cq_bots.txt",
"health-specs/health-specs.json",
"luci/commit-queue.cfg",
"luci/cr-buildbucket.cfg",
"luci/luci-analysis.cfg",
"luci/luci-bisection.cfg",
"luci/luci-logdog.cfg",
"luci/luci-milo.cfg",
"luci/luci-notify.cfg",
"luci/luci-notify/email-templates/*.template",
"luci/luci-scheduler.cfg",
"luci/project.cfg",
"luci/realms.cfg",
"luci/tricium-prod.cfg",
"outages.pyl",
"sheriff-rotations/*.txt",
"project.pyl",
"testing/*.pyl",
],
fail_on_warnings = True,
lint_checks = [
"default",
"-confusing-name",
"-function-docstring",
"-function-docstring-args",
"-function-docstring-return",
"-function-docstring-header",
"-module-docstring",
],
)
# Just copy tricium-prod.cfg to the generated outputs
lucicfg.emit(
dest = "luci/tricium-prod.cfg",
data = io.read_file("tricium-prod.cfg"),
)
# Just copy LUCI Analysis config to generated outputs.
lucicfg.emit(
dest = "luci/luci-analysis.cfg",
data = io.read_file("luci-analysis.cfg"),
)
# Just copy LUCI Bisection config to generated outputs.
lucicfg.emit(
dest = "luci/luci-bisection.cfg",
data = io.read_file("luci-bisection.cfg"),
)
luci.project(
name = settings.project,
config_dir = "luci",
buildbucket = "cr-buildbucket.appspot.com",
logdog = "luci-logdog.appspot.com",
milo = "luci-milo.appspot.com",
notify = "luci-notify.appspot.com",
scheduler = "luci-scheduler.appspot.com",
swarming = "chromium-swarm.appspot.com",
acls = [
acl.entry(
roles = [
acl.LOGDOG_READER,
acl.PROJECT_CONFIGS_READER,
acl.SCHEDULER_READER,
],
groups = "all",
),
acl.entry(
roles = acl.LOGDOG_WRITER,
groups = "luci-logdog-chromium-writers",
),
acl.entry(
roles = acl.SCHEDULER_OWNER,
groups = "project-chromium-admins",
),
],
bindings = [
luci.binding(
roles = "role/configs.validator",
groups = [
"project-chromium-try-task-accounts",
"project-chromium-ci-task-accounts",
],
),
# Roles for LUCI Analysis.
luci.binding(
roles = "role/analysis.reader",
groups = "all",
),
luci.binding(
roles = "role/analysis.queryUser",
groups = "authenticated-users",
),
luci.binding(
roles = "role/analysis.editor",
groups = ["project-chromium-committers", "googlers"],
),
# Role for builder health indicators
luci.binding(
roles = "role/buildbucket.healthUpdater",
users = ["guterman@google.com", "generate-builder@cr-builder-health-indicators.iam.gserviceaccount.com", "tne@google.com"],
),
],
)
luci.cq(
submit_max_burst = 2,
submit_burst_delay = time.minute,
status_host = "chromium-cq-status.appspot.com",
)
luci.logdog(
gs_bucket = "chromium-luci-logdog",
)
luci.milo(
logo = "https://storage.googleapis.com/chrome-infra-public/logo/chromium.svg",
)
luci.notify(
tree_closing_enabled = True,
)
chrome_settings.per_builder_outputs(
root_dir = "builders",
)
# An all-purpose public realm.
luci.realm(
name = "public",
bindings = [
luci.binding(
roles = "role/buildbucket.reader",
groups = "all",
),
luci.binding(
roles = "role/resultdb.invocationCreator",
groups = "project-chromium-tryjob-access",
),
# Other roles are inherited from @root which grants them to group:all.
],
)
luci.realm(
name = "ci",
bindings = [
# Allow CI builders to create invocations in their own builds.
luci.binding(
roles = "role/resultdb.invocationCreator",
groups = "project-chromium-ci-task-accounts",
),
],
)
luci.realm(
name = "try",
bindings = [
# Allow try builders to create invocations in their own builds.
luci.binding(
roles = "role/resultdb.invocationCreator",
groups = [
"project-chromium-try-task-accounts",
# In order to be able to reproduce test tasks that have
# ResultDB enabled (at this point that should be all
# tests), a realm must be provided. The ability to
# trigger machines in the test pool is associated with
# the try realm, so allow those who can trigger swarming
# tasks in that pool tasks to create invocations.
"chromium-led-users",
"project-chromium-tryjob-access",
],
),
],
)
# Allows builders to write baselines and query ResultDB for new tests.
# TODO(crbug/1465953) @project is not available, and @root should inherit into
# project so we'll do this for now until @project is supported.
luci.realm(
name = "@root",
bindings = [
luci.binding(
roles = "role/resultdb.baselineWriter",
groups = [
"project-chromium-ci-task-accounts",
"project-chromium-try-task-accounts",
],
users = [
"chromium-orchestrator@chops-service-accounts.iam.gserviceaccount.com",
],
),
luci.binding(
roles = "role/resultdb.baselineReader",
groups = [
"project-chromium-try-task-accounts",
],
users = [
"chromium-orchestrator@chops-service-accounts.iam.gserviceaccount.com",
],
),
],
)
luci.realm(
name = "webrtc",
bindings = [
# Allow WebRTC builders to create invocations in their own builds.
luci.binding(
roles = "role/resultdb.invocationCreator",
groups = "project-chromium-ci-task-accounts",
),
],
)
luci.builder.defaults.test_presentation.set(resultdb.test_presentation(grouping_keys = ["status", "v.test_suite"]))
exec("//swarming.star")
exec("//recipes.star")
exec("//gn_args/gn_args.star")
exec("//targets/basic_suites.star")
exec("//targets/compound_suites.star")
exec("//targets/matrix_compound_suites.star")
exec("//targets/mixins.star")
exec("//targets/targets.star")
exec("//targets/variants.star")
exec("//notifiers.star")
exec("//subprojects/chromium/subproject.star")
exec("//subprojects/chrome/subproject.star")
exec("//subprojects/infra.star")
branches.exec("//subprojects/codesearch/subproject.star")
branches.exec("//subprojects/findit/subproject.star")
branches.exec("//subprojects/flakiness/subproject.star")
branches.exec("//subprojects/goma/subproject.star")
branches.exec("//subprojects/reclient/subproject.star")
branches.exec("//subprojects/reviver/subproject.star")
branches.exec("//subprojects/webrtc/subproject.star")
exec("//generators/cq-usage.star")
branches.exec("//generators/cq-builders-md.star")
exec("//generators/sort-consoles.star")
# Execute validators after eveything except the outage file so that we're
# validating the final non-outages configuration
exec("//validators/builder-group-triggers.star")
exec("//validators/builders-in-consoles.star")
# Execute this file last so that any configuration changes needed for handling
# outages gets final say
exec("//outages/outages.star")
|