Compare commits

..

No commits in common. "163f2b11215f0e57fecb802415300485dd56b512" and "6d4c26dda5ab36b9a37b64f23686cce57ae37fc7" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,3 @@
clickhouse_add_executable(data_type_deserialization_fuzzer data_type_deserialization_fuzzer.cpp ${SRCS})
target_link_libraries(data_type_deserialization_fuzzer PRIVATE clickhouse_aggregate_functions dbms)

View File

@ -274,7 +274,6 @@ class CI:
build_config=BuildConfig(
name=BuildNames.FUZZERS,
compiler="clang-18",
sanitizer="address",
package_type="fuzzers",
),
run_by_labels=[Tags.libFuzzer],

View File

@ -21,7 +21,7 @@ from s3_helper import S3Helper
from stopwatch import Stopwatch
from tee_popen import TeePopen
TIMEOUT = 60 * 5
TIMEOUT = 60
NO_CHANGES_MSG = "Nothing to run"
s3 = S3Helper()
@ -292,7 +292,7 @@ def main():
and pr_info.head_ref == "master"
):
logging.info("Uploading corpus - running in master")
upload_corpus(fuzzers_path)
# upload_corpus(fuzzers_path)
else:
logging.info("Not uploading corpus - running in PR")
else: