#!/usr/bin/env lucicfg | |
# Copyright 2020 The Flutter Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
""" | |
Configurations for the packages repository. | |
""" | |
load("//lib/ci_yaml/ci_yaml.star", "ci_yaml") | |
load("//lib/release_branches/release_branches.star", "release_branches") | |
def _setup(): | |
ci_yaml.generate("packages", "main", None, "refs/heads/main", recipes_ref = release_branches.main.recipes_ref) | |
packages_config = struct(setup = _setup) |