Skip to content

Releases: abcue/rules_abcue

v0.0.0

08 Jun 03:55

Choose a tag to compare

v0.0.0 Pre-release
Pre-release

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_abcue", version = "0.0.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_abcue",
    sha256 = "5731ce67781b41721d7871a623ae1c92e3e5c1cacb41d987f0804a95d0b92f3a",
    strip_prefix = "rules_abcue-0.0.0",
    url = "https://github.com/abcue/rules_abcue/releases/download/v0.0.0/rules_abcue-v0.0.0.tar.gz",
)

######################
# rules_abcue setup #
######################
# Fetches the rules_abcue dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@rules_abcue//cue:repositories.bzl", "cue_register_toolchains", "rules_abcue_dependencies")

rules_abcue_dependencies()

cue_register_toolchains()

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "6734a719993b1ba4ebe9806e853864395a8d3968ad27f9dd759c196b3eb3abe8",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.45.1/rules_go-v0.45.1.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.45.1/rules_go-v0.45.1.zip",
    ],
)

load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.21.6")

What's Changed

New Contributors

  • @yujunz made their first contribution in #4

Full Changelog: https://github.com/abcue/rules_abcue/commits/v0.0.0