diff options
| author | Ha Thach <[email protected]> | 2022-12-08 12:18:32 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-08 12:18:32 +0700 |
| commit | d4620d99d31b5566248d2f3a182d7c84633601af (patch) | |
| tree | 2d3ac0023cdbf5dae7e5f7df2575d3dbc420abd8 /.github/workflows/pre-commit.yml | |
| parent | ab8cfb3d5bbefcc3ff19a086070b0c83581d789d (diff) | |
| parent | c19bffb1d91dd7dad3365fce938b6d6687d4e5b0 (diff) | |
Merge pull request #1716 from silvergasp/master
fuzz: Add support for fuzzing
Diffstat (limited to '.github/workflows/pre-commit.yml')
| -rw-r--r-- | .github/workflows/pre-commit.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 96a59069b..8a1101ac0 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -34,4 +34,13 @@ jobs: # Install Ceedling gem install ceedling cd test/unit-test - ceedling test:all
\ No newline at end of file + ceedling test:all + + - name: Build Fuzzer + run: | + fuzz_harness=$(ls -d test/fuzz/device/*/) + for h in $fuzz_harness + do + make -C $h get-deps + make -C $h all + done |
