summaryrefslogtreecommitdiff
path: root/.github/workflows/pre-commit.yml
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-12-08 11:37:13 +0700
committerhathach <[email protected]>2022-12-08 11:37:13 +0700
commit33ea178cd9b7c2fdab1a677d2e676a94d131dbb0 (patch)
tree5c69fa057edc0865461cce9361dadda90435af5e /.github/workflows/pre-commit.yml
parentffd008dc75d1a04b9a0664b339342fb494356f46 (diff)
update build fuzzer step
Diffstat (limited to '.github/workflows/pre-commit.yml')
-rw-r--r--.github/workflows/pre-commit.yml9
1 files changed, 1 insertions, 8 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml
index 29a412bcf..653084ca6 100644
--- a/.github/workflows/pre-commit.yml
+++ b/.github/workflows/pre-commit.yml
@@ -36,18 +36,11 @@ jobs:
cd test/unit-test
ceedling test:all
- - name: Fetch deps
- run: |
- fuzz_harness=$(ls -d test/fuzz/device/*/)
- for h in $fuzz_harness
- do
- make $h get-deps
- done
-
- name: Build Fuzzer
run: |
fuzz_harness=$(ls -d test/fuzz/device/*/)
for h in $fuzz_harness
do
+ make $h get-deps
make $h all
done