Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Release: https://github.com/aherrmann/rules_zig/releases/tag/v0.3.0

Author: @aherrmann



_Automated by [Publish to BCR](https://github.com/apps/publish-to-bcr)_

Co-authored-by: Andreas Herrmann <[email protected]>
  • Loading branch information
2 people authored and aiuto committed Jun 3, 2024
1 parent 5132466 commit a3489aa
Show file tree
Hide file tree
Showing 5 changed files with 92 additions and 1 deletion.
57 changes: 57 additions & 0 deletions modules/rules_zig/0.3.0/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
module(
name = "rules_zig",
version = "0.3.0",
compatibility_level = 1,
)

bazel_dep(name = "aspect_bazel_lib", version = "2.4.1")
bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "platforms", version = "0.0.8")

zig = use_extension("//zig:extensions.bzl", "zig")
zig.toolchain(zig_version = "0.11.0")
use_repo(zig, "zig_toolchains")

register_toolchains("@rules_zig//zig/target:all")

register_toolchains("@zig_toolchains//:all")

bazel_dep(name = "stardoc", version = "0.6.2", dev_dependency = True, repo_name = "io_bazel_stardoc")
bazel_dep(name = "gazelle", version = "0.35.0", dev_dependency = True, repo_name = "bazel_gazelle")
bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.5.0", dev_dependency = True)
bazel_dep(
name = "buildifier_prebuilt",
version = "6.4.0",
dev_dependency = True,
)
bazel_dep(name = "rules_multirun", version = "0.6.1", dev_dependency = True)
bazel_dep(name = "rules_python", version = "0.31.0", dev_dependency = True)
bazel_dep(
name = "rules_bazel_integration_test",
version = "0.23.0",
dev_dependency = True,
)

bazel_binaries = use_extension(
"@rules_bazel_integration_test//:extensions.bzl",
"bazel_binaries",
dev_dependency = True,
)

# NOTE: Keep in sync with WORKSPACE.
bazel_binaries.download(version_file = "//:.bazelversion")
bazel_binaries.download(version = "6.3.0")
use_repo(
bazel_binaries,
"bazel_binaries",
"bazel_binaries_bazelisk",
"build_bazel_bazel_.bazelversion",
"build_bazel_bazel_6_3_0",
)

# TODO[AH] Should be an implicit transitive dependency through rules_bazel_integration_test.
# However, if we do not include it explicitly, then the runfiles resolution for
# cgrindel_bazel_starlib/shlib/lib/message.sh fails in
# rules_bazel_integration_test/tools/update_deleted_packages.sh when invoked
# through the rules_multirun target //util:update.
bazel_dep(name = "cgrindel_bazel_starlib", version = "0.19.0", dev_dependency = True)
12 changes: 12 additions & 0 deletions modules/rules_zig/0.3.0/patches/module_dot_bazel_version.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
===================================================================
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,7 +1,7 @@
module(
name = "rules_zig",
- version = "0.0.0",
+ version = "0.3.0",
compatibility_level = 1,
)

bazel_dep(name = "aspect_bazel_lib", version = "2.4.1")
12 changes: 12 additions & 0 deletions modules/rules_zig/0.3.0/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
bcr_test_module:
module_path: "e2e/workspace"
matrix:
platform: ["ubuntu2204", "macos"] # ["debian10", "macos", "ubuntu2004", "windows"]
bazel: [6.3.0, 7.0.2]
tasks:
run_tests:
name: "Run test module"
platform: ${{ platform }}
bazel: ${{ bazel }}
test_targets:
- "//..."
9 changes: 9 additions & 0 deletions modules/rules_zig/0.3.0/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"integrity": "sha256-dO3OR3iohe7qFZwRwzXtQSqRPCS51wHlkKQsNKpIs8g=",
"strip_prefix": "rules_zig-0.3.0",
"url": "https://github.com/aherrmann/rules_zig/releases/download/v0.3.0/rules_zig-0.3.0.tar.gz",
"patches": {
"module_dot_bazel_version.patch": "sha256-VQbe2iEn0lrhump6Gzt9VpHz6lZNc+uGcOo2fx/knjA="
},
"patch_strip": 1
}
3 changes: 2 additions & 1 deletion modules/rules_zig/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
],
"versions": [
"0.1.0",
"0.2.0"
"0.2.0",
"0.3.0"
],
"yanked_versions": {}
}

0 comments on commit a3489aa

Please sign in to comment.