We will soon be moving utf8_range into the protobuf repo, not as a subtree anymore but as the real source of truth. This change adds CI coverage in advance so that there will not be a lapse in coverage. I also upgraded our pinned versions of rules_fuzzing and rules_python, to fix some errors that came up with Bazel 6 and Python 3.12. I had to patch rules_fuzzing but I am working on upstreaming the fixes. PiperOrigin-RevId: 579987379pull/14651/head
parent
0f1ab75dbe
commit
f247630a10
5 changed files with 55 additions and 15 deletions
@ -1,4 +1,5 @@ |
||||
exports_files([ |
||||
"BUILD.bazel", |
||||
"rules_fuzzing.patch", |
||||
"zlib.BUILD", |
||||
]) |
||||
|
@ -0,0 +1,25 @@ |
||||
diff --git a/fuzzing/tools/validate_dict.py b/fuzzing/tools/validate_dict.py
|
||||
index d561e68..52cbcb8 100644
|
||||
--- a/fuzzing/tools/validate_dict.py
|
||||
+++ b/fuzzing/tools/validate_dict.py
|
||||
@@ -19,7 +19,7 @@ Validates and merges a set of fuzzing dictionary files into a single output.
|
||||
|
||||
from absl import app
|
||||
from absl import flags
|
||||
-from dict_validation import validate_line
|
||||
+from fuzzing.tools.dict_validation import validate_line
|
||||
from sys import stderr
|
||||
|
||||
FLAGS = flags.FLAGS
|
||||
diff --git a/fuzzing/requirements.txt b/fuzzing/requirements.txt
|
||||
index 01482d4..4b36f4f 100644
|
||||
--- a/fuzzing/requirements.txt
|
||||
+++ b/fuzzing/requirements.txt
|
||||
@@ -1,5 +1,5 @@
|
||||
# Python requirements for the tools supporting the fuzzing rules. These are
|
||||
# installed automatically through the WORKSPACE configuration.
|
||||
|
||||
-absl-py==0.11.0 --hash=sha256:b3d9eb5119ff6e0a0125f6dabf2f9fae02f8acae7be70576002fac27235611c5
|
||||
-six==1.15.0 --hash=sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced
|
||||
+absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3
|
||||
+six==1.15.0
|
Loading…
Reference in new issue