Skip to content

Commit

Permalink
Fix staleness tests to autogenerate new PHP files
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 684137297
  • Loading branch information
mkruskal-google authored and copybara-github committed Oct 9, 2024
1 parent 36075ea commit 56e4aeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions php/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -198,10 +198,10 @@ genrule(
staleness_test(
name = "proto_staleness_test",
outs = glob(
["src/**/*.php"] + WKT_GENERATED_FILES + DESCRIPTOR_GENERATED_FILES,
["src/**/*.php"],
allow_empty = True,
exclude = _RUNTIME_SOURCES,
),
exclude = _RUNTIME_SOURCES + WKT_GENERATED_FILES + DESCRIPTOR_GENERATED_FILES,
) + WKT_GENERATED_FILES + DESCRIPTOR_GENERATED_FILES,
generated_pattern = "generated/%s",
tags = ["manual"],
)
Expand Down

0 comments on commit 56e4aeb

Please sign in to comment.