mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Merge 163f2b1121
into e0f8b8d351
This commit is contained in:
commit
2d6c4790c9
@ -1,3 +1,2 @@
|
||||
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)
|
||||
|
@ -274,6 +274,7 @@ class CI:
|
||||
build_config=BuildConfig(
|
||||
name=BuildNames.FUZZERS,
|
||||
compiler="clang-18",
|
||||
sanitizer="address",
|
||||
package_type="fuzzers",
|
||||
),
|
||||
run_by_labels=[Tags.libFuzzer],
|
||||
|
@ -21,7 +21,7 @@ from s3_helper import S3Helper
|
||||
from stopwatch import Stopwatch
|
||||
from tee_popen import TeePopen
|
||||
|
||||
TIMEOUT = 60
|
||||
TIMEOUT = 60 * 5
|
||||
NO_CHANGES_MSG = "Nothing to run"
|
||||
s3 = S3Helper()
|
||||
|
||||
@ -286,7 +286,15 @@ def main():
|
||||
retcode = process.wait()
|
||||
if retcode == 0:
|
||||
logging.info("Run successfully")
|
||||
upload_corpus(fuzzers_path)
|
||||
if (
|
||||
pr_info.number == 0
|
||||
and pr_info.base_ref == "master"
|
||||
and pr_info.head_ref == "master"
|
||||
):
|
||||
logging.info("Uploading corpus - running in master")
|
||||
upload_corpus(fuzzers_path)
|
||||
else:
|
||||
logging.info("Not uploading corpus - running in PR")
|
||||
else:
|
||||
logging.info("Run failed")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user