-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release: https://github.com/yuyawk/rules_build_error/releases/tag/0.6.1 _Automated by [Publish to BCR](https://github.com/apps/publish-to-bcr)_ Co-authored-by: publish-to-bcr-bot <112732530+publish-to-bcr-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c446821
commit 83999fb
Showing
5 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
"""Module for `rules_build_error`. | ||
""" | ||
|
||
module( | ||
name = "rules_build_error", | ||
version = "0.6.1", | ||
) | ||
|
||
################################ | ||
# | ||
# Dev-dependencies | ||
# | ||
################################ | ||
|
||
bazel_dep(name = "bazel_skylib", version = "1.7.1", dev_dependency = True) | ||
bazel_dep( | ||
name = "hermetic_cc_toolchain", | ||
version = "3.1.1", | ||
dev_dependency = True, | ||
) | ||
|
||
cc_toolchains = use_extension( | ||
"@hermetic_cc_toolchain//toolchain:ext.bzl", | ||
"toolchains", | ||
dev_dependency = True, | ||
) | ||
use_repo(cc_toolchains, "zig_sdk") | ||
|
||
register_toolchains( | ||
"@zig_sdk//toolchain:linux_amd64_gnu.2.31", | ||
"@zig_sdk//toolchain:linux_arm64_gnu.2.31", | ||
"@zig_sdk//toolchain:darwin_amd64", | ||
"@zig_sdk//toolchain:darwin_arm64", | ||
"@zig_sdk//toolchain:windows_amd64", | ||
"@zig_sdk//toolchain:windows_arm64", | ||
dev_dependency = True, | ||
) | ||
|
||
bazel_dep(name = "buildifier_prebuilt", version = "7.3.1", dev_dependency = True) |
14 changes: 14 additions & 0 deletions
14
modules/rules_build_error/0.6.1/patches/module_dot_bazel_version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
=================================================================== | ||
--- a/MODULE.bazel | ||
+++ b/MODULE.bazel | ||
@@ -2,9 +2,9 @@ | ||
""" | ||
|
||
module( | ||
name = "rules_build_error", | ||
- version = "0.0.0", | ||
+ version = "0.6.1", | ||
) | ||
|
||
################################ | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
bcr_test_module: | ||
module_path: "examples" | ||
matrix: | ||
platform: | ||
- "debian10" | ||
- "ubuntu2004" | ||
- "macos" | ||
- "windows" | ||
bazel: | ||
- "6.x" | ||
- "7.x" | ||
tasks: | ||
run_tests: | ||
name: "Run test module" | ||
platform: ${{ platform }} | ||
bazel: ${{ bazel }} | ||
test_targets: | ||
- "//..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"integrity": "sha256-0k4/7P3lUd/g0+Ozp0TeQ3nE+d21ogeMYZWnm1v9Tns=", | ||
"strip_prefix": "rules_build_error-0.6.1", | ||
"url": "https://github.com/yuyawk/rules_build_error/releases/download/0.6.1/rules_build_error-0.6.1.tar.gz", | ||
"patches": { | ||
"module_dot_bazel_version.patch": "sha256-sgDe/gj0+tgyjtc8P5XfdEcwYOxog9eU9eAe/Ejr3AU=" | ||
}, | ||
"patch_strip": 1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,8 @@ | |
"0.5.3", | ||
"0.5.4", | ||
"0.5.5", | ||
"0.6.0" | ||
"0.6.0", | ||
"0.6.1" | ||
], | ||
"yanked_versions": {} | ||
} |