Skip to content

Commit 0d943fc

Browse files
authored
feat!: drop support for bazel 6 (#345)
1 parent c13c9db commit 0d943fc

3 files changed

Lines changed: 2 additions & 37 deletions

File tree

.bcr/presubmit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
bcr_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:

.github/workflows/release_prep.sh

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff 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.
2525
cat << EOF
26-
## Using Bzlmod with Bazel 7-8
26+
## Using Bzlmod
2727
2828
1. Add to your \`MODULE.bazel\` file:
2929
3030
\`\`\`starlark
3131
bazel_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-
\`\`\`
6733
EOF

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)