From f734bc600b134b95fdaa63ab6a941005118a4017 Mon Sep 17 00:00:00 2001 From: Anichitei Ionel-Cristinel <49393881+ianichitei@users.noreply.github.com> Date: Fri, 31 Jul 2020 18:16:41 +0300 Subject: [PATCH] Try to build bdshemu_fuzz We build it with gcc just to ensure that is stays up to date when bddisasm or bdshemu are changed --- .github/workflows/c-cpp.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 92cd8a7..b603c1f 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -53,6 +53,11 @@ jobs: make -j$(nproc) cd .. cd .. + - name: Build shemu fuzzer + run: | + cd bdshemu_fuzz + AFL_COMPILER=gcc make -j$(nproc) + cd .. - name: Install setuptools run: | python3 -m pip install --upgrade pip