mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
6e00e14a45
Update fuzzers clang version
28 lines
687 B
YAML
28 lines
687 B
YAML
name: libFuzzer
|
|
|
|
env:
|
|
# Force the stdout and stderr streams to be unbuffered
|
|
PYTHONUNBUFFERED: 1
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
# schedule:
|
|
# - cron: '0 0 2 31 1' # never for now
|
|
workflow_call:
|
|
jobs:
|
|
BuilderFuzzers:
|
|
uses: ./.github/workflows/reusable_build.yml
|
|
with:
|
|
build_name: fuzzers
|
|
libFuzzerTest:
|
|
needs: [BuilderFuzzers]
|
|
uses: ./.github/workflows/reusable_test.yml
|
|
with:
|
|
test_name: libFuzzer tests
|
|
runner_type: func-tester
|
|
additional_envs: |
|
|
KILL_TIMEOUT=10800
|
|
batches: 1
|
|
run_command: |
|
|
cd "$REPO_COPY/tests/ci"
|
|
python3 libfuzzer_test_check.py "$CHECK_NAME" "$KILL_TIMEOUT"
|