File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22bcr_test_module :
33 module_path : " examples/gem"
44 matrix :
5- bazel : ["8.x", "7.x", "6.x" ]
5+ bazel : ["8.x", "7.x"]
66 # NB: Windows is removed due to https://github.com/bazel-contrib/rules_ruby/issues/64
77 platform : ["debian10", "macos", "ubuntu2004"]
88 tasks :
Original file line number Diff line number Diff line change @@ -23,45 +23,11 @@ tar --create --auto-compress \
2323
2424# The stdout of this program will be used as the top of the release notes for this release.
2525cat << EOF
26- ## Using Bzlmod with Bazel 7-8
26+ ## Using Bzlmod
2727
28281. Add to your \` MODULE.bazel\` file:
2929
3030\`\`\` starlark
3131bazel_dep(name = "rules_ruby", version = "${TAG: 1} ")
3232\`\`\`
33-
34- ## Using Bzlmod with Bazel 6
35-
36- 1. Enable with \` common --enable_bzlmod\` in \` .bazelrc\` .
37- 2. Add to your \` MODULE.bazel\` file:
38-
39- \`\`\` starlark
40- bazel_dep(name = "rules_ruby", version = "${TAG: 1} ")
41- \`\`\`
42-
43- ## Using WORKSPACE
44-
45- Paste this snippet into your \` WORKSPACE.bazel\` file:
46-
47- \`\`\` starlark
48- load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
49-
50- # Skylib is a dependency, remove if you already have it.
51- http_archive(
52- name = "bazel_skylib",
53- sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
54- urls = [
55- "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
56- "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
57- ],
58- )
59-
60- http_archive(
61- name = "rules_ruby",
62- sha256 = "${SHA} ",
63- strip_prefix = "${PREFIX} ",
64- url = "https://github.com/bazel-contrib/rules_ruby/releases/download/${TAG} /${ARCHIVE} ",
65- )
66- \`\`\`
6733EOF
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ The ruleset is known to work with:
88
99- Bazel 8 using WORKSPACE and Bzlmod _ (tested on CI)_ .
1010- Bazel 7 using WORKSPACE and Bzlmod _ (no longer tested on CI)_ .
11- - Bazel 6 using WORKSPACE and Bzlmod _ (no longer tested on CI)_ .
1211
1312## Getting Started
1413
You can’t perform that action at this time.
0 commit comments