Skip to content

Commit

Permalink
Merge pull request #205 from aherrmann/deleted-packages
Browse files Browse the repository at this point in the history
chore: Reproducible update_deleted_packages
  • Loading branch information
aherrmann authored Jan 30, 2024
2 parents d278000 + d459723 commit 06bbc7d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions util/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
load("@bazel_gazelle//:def.bzl", "gazelle", "gazelle_binary")
load("@buildifier_prebuilt//:rules.bzl", "buildifier", "buildifier_test")
load("@rules_multirun//:defs.bzl", "multirun")
load("@rules_multirun//:defs.bzl", "command", "multirun")

buildifier(
name = "buildifier.fix",
Expand All @@ -26,7 +26,7 @@ multirun(
commands = [
":gazelle",
":update_filegroups",
"@rules_bazel_integration_test//tools:update_deleted_packages",
":update_deleted_packages",
":buildifier.fix",
] + select({
# Keep in sync with //docs:BUILD.bazel.
Expand Down Expand Up @@ -60,6 +60,12 @@ py_binary(
deps = ["@rules_python//python/runfiles"],
)

command(
name = "update_deleted_packages",
command = "@rules_bazel_integration_test//tools:update_deleted_packages",
environment = {"LC_COLLATE": "C.UTF-8"},
)

py_binary(
name = "update_zig_versions",
srcs = ["update_zig_versions.py"],
Expand Down

0 comments on commit 06bbc7d

Please sign in to comment.