mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 05:12:54 +00:00
* feat: implement unstable_fuzz_create_table_standalone * chore: use drop database * docs: update docs * chore: add ci config * chore: add feature gate * fix: fix clippy * chore: update ci * Apply suggestions from code review * feat: reduce num * Apply suggestions from code review * chore: apply suggestions from CR * Apply suggestions from code review * chore: reduce `wait_timeout` in health check * Update .env.example * refactor: use `init_greptime_connections_via_env` * refactor: use `init_greptime_connections_via_env` --------- Co-authored-by: tison <wander4096@gmail.com>
20 lines
563 B
YAML
20 lines
563 B
YAML
name: Fuzz Test
|
|
description: 'Fuzz test given setup and service'
|
|
inputs:
|
|
target:
|
|
description: "The fuzz target to test"
|
|
required: true
|
|
max-total-time:
|
|
description: "Max total time(secs)"
|
|
required: true
|
|
unstable:
|
|
default: 'false'
|
|
description: "Enable unstable feature"
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Run Fuzz Test
|
|
shell: bash
|
|
run: cargo fuzz run ${{ inputs.target }} --fuzz-dir tests-fuzz -D -s none ${{ inputs.unstable == 'true' && '--features=unstable' || '' }} -- -max_total_time=${{ inputs.max-total-time }}
|
|
|