Compare commits

...

6 Commits

Author SHA1 Message Date
Yakov Olkhovskiy
163f2b1121 run time to 5 min per test 2024-11-21 05:57:12 +00:00
Yakov Olkhovskiy
52ab45b6ee trigger build 2024-11-21 03:29:56 +00:00
Yakov Olkhovskiy
bfafaf93dc trigger build 2024-11-21 03:17:01 +00:00
Yakov Olkhovskiy
c9ffcb0ef1 fix 2024-11-21 03:00:16 +00:00
Yakov Olkhovskiy
e87ac61ff3 fix: only asan 2024-11-21 02:36:58 +00:00
Yakov Olkhovskiy
2313b7ca78 update: prevent uploading corpus if running in PR, add sanitizers 2024-11-21 01:59:12 +00:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,2 @@
clickhouse_add_executable(data_type_deserialization_fuzzer data_type_deserialization_fuzzer.cpp ${SRCS}) 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) target_link_libraries(data_type_deserialization_fuzzer PRIVATE clickhouse_aggregate_functions dbms)

View File

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

View File

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