From 433c058a66e75e01a8f76b388426fbd5e5716907 Mon Sep 17 00:00:00 2001 From: Derek Cormier Date: Fri, 2 Jun 2023 11:06:24 -0700 Subject: [PATCH] chore: auto-publish gazelle module to BCR --- .bcr/config.yml | 1 + .bcr/gazelle/metadata.template.json | 20 ++++++++++++++++++++ .bcr/gazelle/presubmit.yml | 27 +++++++++++++++++++++++++++ .bcr/gazelle/source.template.json | 5 +++++ 4 files changed, 53 insertions(+) create mode 100644 .bcr/gazelle/metadata.template.json create mode 100644 .bcr/gazelle/presubmit.yml create mode 100644 .bcr/gazelle/source.template.json diff --git a/.bcr/config.yml b/.bcr/config.yml index 024e524293..7bdd70fbaf 100644 --- a/.bcr/config.yml +++ b/.bcr/config.yml @@ -15,3 +15,4 @@ fixedReleaser: login: f0rmiga email: thulio@aspect.dev +moduleRoots: [".", "gazelle"] diff --git a/.bcr/gazelle/metadata.template.json b/.bcr/gazelle/metadata.template.json new file mode 100644 index 0000000000..9cd4291e5a --- /dev/null +++ b/.bcr/gazelle/metadata.template.json @@ -0,0 +1,20 @@ +{ + "homepage": "https://github.com/bazelbuild/rules_python", + "maintainers": [ + { + "name": "Richard Levasseur", + "email": "rlevasseur@google.com", + "github": "rickeylev" + }, + { + "name": "Thulio Ferraz Assis", + "email": "thulio@aspect.dev", + "github": "f0rmiga" + } + ], + "repository": [ + "github:bazelbuild/rules_python" + ], + "versions": [], + "yanked_versions": {} +} diff --git a/.bcr/gazelle/presubmit.yml b/.bcr/gazelle/presubmit.yml new file mode 100644 index 0000000000..be948ad0f2 --- /dev/null +++ b/.bcr/gazelle/presubmit.yml @@ -0,0 +1,27 @@ +# Copyright 2023 The Bazel Authors. All rights reserved. +# +# 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. + +bcr_test_module: + module_path: "../examples/build_file_generation" + matrix: + platform: ["debian11", "macos", "ubuntu2004", "windows"] + tasks: + run_tests: + name: "Run test module" + platform: ${{ platform }} + build_targets: + - "//..." + - ":modules_map" + test_targets: + - "//..." diff --git a/.bcr/gazelle/source.template.json b/.bcr/gazelle/source.template.json new file mode 100644 index 0000000000..cf06458e50 --- /dev/null +++ b/.bcr/gazelle/source.template.json @@ -0,0 +1,5 @@ +{ + "integrity": "", + "strip_prefix": "{REPO}-{VERSION}/gazelle", + "url": "https://github.com/{OWNER}/{REPO}/releases/download/{TAG}/rules_python-{TAG}.tar.gz" +}