Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add bcr config to automatize publishing new releases to bcr #90

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .bcr/metadata.template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"homepage": "https://github.com/masmovil/masorange_rules_helm",
"maintainers": [
{
"email": "[email protected]",
"github": "danigar",
"name": "Daniel Garcia"
},
{
"email": "[email protected]",
"name": "Pablo Moncada"
},
{
"email": "[email protected]",
"name": "Carlos Gamez"
}
],
"repository": [
"github:masmovil/masorange_rules_helm"
],
"versions": [
"1.5.0"
],
"yanked_versions": {}
}
18 changes: 18 additions & 0 deletions .bcr/presubmit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
matrix:
module_path: examples
platform:
- debian10
- ubuntu2004
- macos
- macos_arm64
bazel:
- 8.x
- 7.x
- 6.x
tasks:
verify_targets:
run_test_module:
name: Build examples module
platform: ${{ platform }}
bazel: ${{ bazel }}
build_targets: ['//...']
5 changes: 5 additions & 0 deletions .bcr/source.template.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"url": "https://github.com/{OWNER}/{REPO}/releases/download/{TAG}/masorange_rules_helm-{TAG}.tar.gz",
"integrity": "",
"strip_prefix": "{REPO}-{VERSION}"
}
Loading