Releases: abcue/rules_abcue
Releases · abcue/rules_abcue
v0.0.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
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
- Add cue_module by @yujunz in #4
- Update docs by @yujunz in #5
- Rename version to cue_version by @yujunz in #6
- Add cue_instance by @yujunz in #7
- Fix cue_version by @yujunz in #8
- Split rules by @yujunz in #9
- Add cue_config by @yujunz in #11
- Add cue_export by @yujunz in #10
- Add e2e smoke tests for cue_export by @yujunz in #12
- Add diff test for export by @yujunz in #13
- Fix rule and filename conflict by @yujunz in #16
- Fix windows tests by @yujunz in #14
- Exclude windows in CI by @yujunz in #18
- Add cue v0.11.0 by @yujunz in #20
- Add cue v0.11.1 by @yujunz in #21
- Update e2e to cue v0.11 by @yujunz in #22
- Update cue to v0.11.2 by @yujunz in #23
- Set default toolchain name and version by @yujunz in #24
- Upgrade default version to 0.12 by @yujunz in #25
- Add e2e tests for bazel6 by @yujunz in #26
- Export ci_gen.yaml from cue by @yujunz in #27
- Export workflows from cue with bazel rules by @yujunz in #28
- Export workflows from cue by @yujunz in #29
- Add workflow to publish to bcr by @yujunz in #30
New Contributors
Full Changelog: https://github.com/abcue/rules_abcue/commits/v0.0.0