Skip to content

v1.0.1

Compare
Choose a tag to compare
@danigar danigar released this 25 Nov 15:34
· 19 commits to master since this release
a892549

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "masmovil_bazel_rules", version = "1.0.1")
git_override(module_name = "masmovil_bazel_rules", remote = "https://github.com/masmovil/bazel-rules", commit = "a8925499b6b24645abf62f3ccc5785afc74d5e3c")

We are still working on publishing the rules to the bazel central registry. In the meantime, if you want to use this rules you will can override them using git_override to fetch them from this git repository.

Using WORKSPACE:

Paste this into your WORKSPACE file:

workspace(
    name = "helm-workspace",
)

http_archive(
    name = "masmovil_bazel_rules",
    sha256 = "59329638dd23991a23723b9936d9a48b12473ae0d41567bc7b27c8dd24baac24",
    urls = [
        "https://github.com/masmovil/bazel-rules/archive/refs/tags/v1.0.1.zip",
    ],
)

load("@masmovil_bazel_rules//:repositories.bzl", "mm_repositories")

mm_repositories()

load("@masmovil_bazel_rules//:config.bzl", "mm_config")

mm_config()

What's Changed

Internal rewrite of helm_lint to avoid loading external toolchain in host workspaces.