Skip to content

Commit 4997860

Browse files
Release: https://github.com/yuyawk/rules_build_error/releases/tag/0.8.3 _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>
1 parent 0f70a3c commit 4997860

File tree

5 files changed

+86
-1
lines changed

5 files changed

+86
-1
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
"""Module for `rules_build_error`.
2+
"""
3+
4+
module(
5+
name = "rules_build_error",
6+
version = "0.8.3",
7+
)
8+
9+
bazel_dep(name = "platforms", version = "0.0.10")
10+
11+
################################
12+
#
13+
# Dev-dependencies
14+
#
15+
################################
16+
17+
bazel_dep(name = "bazel_skylib", version = "1.7.1", dev_dependency = True)
18+
bazel_dep(
19+
name = "hermetic_cc_toolchain",
20+
version = "3.1.1",
21+
dev_dependency = True,
22+
)
23+
24+
cc_toolchains = use_extension(
25+
"@hermetic_cc_toolchain//toolchain:ext.bzl",
26+
"toolchains",
27+
dev_dependency = True,
28+
)
29+
use_repo(cc_toolchains, "zig_sdk")
30+
31+
register_toolchains(
32+
"@zig_sdk//toolchain:linux_amd64_gnu.2.31",
33+
"@zig_sdk//toolchain:linux_arm64_gnu.2.31",
34+
"@zig_sdk//toolchain:darwin_amd64",
35+
"@zig_sdk//toolchain:darwin_arm64",
36+
"@zig_sdk//toolchain:windows_amd64",
37+
"@zig_sdk//toolchain:windows_arm64",
38+
dev_dependency = True,
39+
)
40+
41+
bazel_dep(name = "buildifier_prebuilt", version = "7.3.1", dev_dependency = True)
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
===================================================================
2+
--- a/MODULE.bazel
3+
+++ b/MODULE.bazel
4+
@@ -2,9 +2,9 @@
5+
"""
6+
7+
module(
8+
name = "rules_build_error",
9+
- version = "0.0.0",
10+
+ version = "0.8.3",
11+
)
12+
13+
bazel_dep(name = "platforms", version = "0.0.10")
14+
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
bcr_test_module:
3+
module_path: "examples"
4+
matrix:
5+
platform:
6+
- "debian10"
7+
- "ubuntu2004"
8+
- "macos_arm64"
9+
- "windows"
10+
bazel:
11+
- "6.x"
12+
- "7.x"
13+
- "8.x"
14+
tasks:
15+
run_tests:
16+
name: "Run test module"
17+
platform: ${{ platform }}
18+
bazel: ${{ bazel }}
19+
test_targets:
20+
- "//..."
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"integrity": "sha256-/UGW1SjDUqTXloV/RZRBJaubtEm5dWFis1h/sgk2UOo=",
3+
"strip_prefix": "rules_build_error-0.8.3",
4+
"url": "https://github.com/yuyawk/rules_build_error/releases/download/0.8.3/rules_build_error-0.8.3.tar.gz",
5+
"patches": {
6+
"module_dot_bazel_version.patch": "sha256-ghXgdqikzOBtDSbHi835t5rv+NaSseHomydykqGjwpk="
7+
},
8+
"patch_strip": 1
9+
}

modules/rules_build_error/metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"0.7.0",
2626
"0.8.0",
2727
"0.8.1",
28-
"0.8.2"
28+
"0.8.2",
29+
"0.8.3"
2930
],
3031
"yanked_versions": {}
3132
}

0 commit comments

Comments
 (0)