Fix staleness tests to autogenerate new PHP files

PiperOrigin-RevId: 684137297
pull/18722/head
Mike Kruskal 5 months ago committed by Copybara-Service
parent 36075eafae
commit 56e4aeb506
  1. 6
      php/BUILD.bazel

@ -198,10 +198,10 @@ genrule(
staleness_test( staleness_test(
name = "proto_staleness_test", name = "proto_staleness_test",
outs = glob( outs = glob(
["src/**/*.php"] + WKT_GENERATED_FILES + DESCRIPTOR_GENERATED_FILES, ["src/**/*.php"],
allow_empty = True, 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", generated_pattern = "generated/%s",
tags = ["manual"], tags = ["manual"],
) )

Loading…
Cancel
Save