mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-04 12:22:55 +00:00
* feat: add create table fuzz test * chore: add ci cfg for fuzz tests * refactor: remove redundant nightly config * chore: run fuzz test in debug mode * chore: use ubuntu-latest * fix: close connection * chore: add cache in fuzz test ci * chore: apply suggestion from CR * chore: apply suggestion from CR * chore: refactor the fuzz test action
14 lines
346 B
YAML
14 lines
346 B
YAML
name: Fuzz Test
|
|
description: 'Fuzz test given setup and service'
|
|
inputs:
|
|
target:
|
|
description: "The fuzz target to test"
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Run Fuzz Test
|
|
shell: bash
|
|
run: cargo fuzz run ${{ inputs.target }} --fuzz-dir tests-fuzz -D -s none -- -max_total_time=120
|
|
env:
|
|
GT_MYSQL_ADDR: 127.0.0.1:4002
|