Release 0.3.0
0.3.0 - 2022-07-19
Added
- The new
sh_binaries
rule can bundle multiple executable files tracked by
Bazel into a single target that can be used in a genrule or a custom rule to
access those tools, either through make variables in a genrule, or through
theShBinariesInfo
provider.
See issue #19.
Changed
- improved support for arm64
See PR #21
WORKSPACE setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_sh",
sha256 = "d668bb32f112ead69c58bde2cae62f6b8acefe759a8c95a2d80ff6a85af5ac5e",
strip_prefix = "rules_sh-0.3.0",
urls = ["https://github.com/tweag/rules_sh/archive/v0.3.0.tar.gz"],
)
load("@rules_sh//sh:repositories.bzl", "rules_sh_dependencies")
rules_sh_dependencies()