Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[email protected] #2371

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions modules/aspect_rules_lint/1.0.0-rc5/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
"Bazel dependencies"

module(
name = "aspect_rules_lint",
version = "1.0.0-rc5",
compatibility_level = 1,
)

bazel_dep(name = "aspect_bazel_lib", version = "2.5.0")

# Needed in the root because we use js_lib_helpers in our aspect impl
# Minimum version needs 'chore: bump bazel-lib to 2.0 by @alexeagle in #1311'
# to allow users on bazel-lib 2.0
bazel_dep(name = "aspect_rules_js", version = "1.40.0")
bazel_dep(name = "bazel_skylib", version = "1.4.2")
bazel_dep(name = "platforms", version = "0.0.7")
bazel_dep(name = "rules_multirun", version = "0.9.0")
bazel_dep(name = "rules_multitool", version = "0.4.0")

# Needed in the root because we dereference ProtoInfo in our aspect impl
bazel_dep(name = "rules_proto", version = "6.0.0")

# Needed in the root because we dereference the toolchain in our aspect impl
bazel_dep(name = "rules_buf", version = "0.1.1")
bazel_dep(name = "toolchains_protoc", version = "0.2.1")

multitool = use_extension("@rules_multitool//multitool:extension.bzl", "multitool")
multitool.hub(lockfile = "//format:multitool.lock.json")
multitool.hub(lockfile = "//lint:multitool.lock.json")
use_repo(multitool, "multitool")

# Locally, use newer bazel-lib for stardoc
single_version_override(
module_name = "aspect_bazel_lib",
version = "2.7.7",
)

# 0.5.4 is the first version with bzlmod support
bazel_dep(name = "stardoc", version = "0.5.4", dev_dependency = True, repo_name = "io_bazel_stardoc")
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
===================================================================
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,9 +1,9 @@
"Bazel dependencies"

module(
name = "aspect_rules_lint",
- version = "0.0.0",
+ version = "1.0.0-rc5",
compatibility_level = 1,
)

bazel_dep(name = "aspect_bazel_lib", version = "2.5.0")
14 changes: 14 additions & 0 deletions modules/aspect_rules_lint/1.0.0-rc5/presubmit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
bcr_test_module:
module_path: "example"
matrix:
bazel: ["7.x", "6.x"]
platform: ["debian10", "ubuntu2004"]
tasks:
run_tests:
name: "Run test module"
bazel: ${{ bazel }}
platform: ${{ platform }}
environment:
BAZELISK_BASE_URL: "https://github.com/bazelbuild/bazel/releases/download/"
test_targets:
- "//..."
9 changes: 9 additions & 0 deletions modules/aspect_rules_lint/1.0.0-rc5/source.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"integrity": "sha256-RVV9MjYCSiEZWY+MpPsKsgNWa8mYAihbwMh2S7XuLjo=",
"strip_prefix": "rules_lint-1.0.0-rc5",
"url": "https://github.com/aspect-build/rules_lint/releases/download/v1.0.0-rc5/rules_lint-v1.0.0-rc5.tar.gz",
"patches": {
"module_dot_bazel_version.patch": "sha256-q/gRx7aUbuxvXl42pl2qpxU8LOt0UMJkPnl3pw4fxWo="
},
"patch_strip": 1
}
3 changes: 2 additions & 1 deletion modules/aspect_rules_lint/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"1.0.0-rc1",
"1.0.0-rc2",
"1.0.0-rc3",
"1.0.0-rc4"
"1.0.0-rc4",
"1.0.0-rc5"
],
"yanked_versions": {}
}
Loading