blob: 2ad0bfcacb91aaaf7e1e0069fe3414772c4053bb [file] [log] [blame]
# Copyright 2018 The LUCI Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load('@stdlib//internal/graph.star', 'graph')
load('@stdlib//internal/luci/common.star', 'keys')
load('@stdlib//internal/luci/lib/service.star', 'service')
load('@stdlib//internal/luci/lib/validate.star', 'validate')
def project(name, buildbucket=None, swarming=None, logdog=None):
"""Defines a LUCI project.
There should be exactly one such definition in a single top-level config file.
Args:
name: full name of the project.
buildbucket: hostname of a Buildbucket service to use (if any).
swarming: hostname of a Swarming service to use (if any).
logdog: hostname of a LogDog service to use (if any).
"""
graph.add_node(keys.project(), props = {
'name': validate.string('name', name),
'buildbucket': service.from_host('buildbucket', buildbucket),
'swarming': service.from_host('swarming', swarming),
'logdog': service.from_host('logdog', logdog),
})