Skip to content

Commit 9fa16ac

Browse files
committed
Fix rules to work with --incompatible_auto_exec_groups
1 parent cd48714 commit 9fa16ac

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.bazelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ build --workspace_status_command="echo BUILD_SCM_VERSION 1.2.3"
2323
# https://bazelbuild.slack.com/archives/C014RARENH0/p1691158021917459?thread_ts=1691156601.420349&cid=C014RARENH0
2424
common --check_direct_dependencies=off
2525

26+
# Make sure we don't regress this.
27+
common --incompatible_auto_exec_groups
28+
2629
# Load any settings & overrides specific to the current user from `.aspect/bazelrc/user.bazelrc`.
2730
# This file should appear in `.gitignore` so that settings are not shared with team members. This
2831
# should be last statement in this config so the user configuration is able to overwrite flags from

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module(
99

1010
# Lower-bounds (minimum) versions for direct runtime dependencies.
1111
# Do not bump these unless rules_js requires a newer version to function.
12-
bazel_dep(name = "aspect_bazel_lib", version = "2.8.1")
12+
bazel_dep(name = "aspect_bazel_lib", version = "2.9.2")
1313
bazel_dep(name = "bazel_features", version = "1.9.0")
1414
bazel_dep(name = "bazel_skylib", version = "1.5.0")
1515
bazel_dep(name = "platforms", version = "0.0.5")

npm/private/npm_package_store.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ def _npm_package_store_impl(ctx):
238238
"--directory",
239239
package_store_directory.path,
240240
],
241+
toolchain = "@aspect_bazel_lib//lib:tar_toolchain_type",
241242
mnemonic = "NpmPackageExtract",
242243
progress_message = "Extracting npm package {}@{}".format(package, version),
243244
)

0 commit comments

Comments
 (0)