diff options
author | vanhauser-thc <vh@thc.org> | 2021-12-25 23:59:17 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-12-25 23:59:17 +0100 |
commit | 7b3b707ae6dfe3420ab0d885cbbe688ddcbf02ee (patch) | |
tree | 96af143546bf329c355fe52724808be57c07ef9f | |
parent | 60b0c3802257b6ae0ebd3e6aeb78c10338f49345 (diff) | |
download | afl++-7b3b707ae6dfe3420ab0d885cbbe688ddcbf02ee.tar.gz |
macos ci
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39201b67..42698c16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,8 +30,13 @@ jobs: run: sudo -E ./afl-system-config ; export AFL_SKIP_CPUFREQ=1 ; make tests macos: runs-on: macOS-latest + env: + AFL_MAP_SIZE=4000 + AFL_SKIP_CPUFREQ=1 steps: - uses: actions/checkout@v2 + - name: debug + run: echo AFL_MAP_SIZE=$AFL_MAP_SIZE - name: install run: brew install make - name: build @@ -39,4 +44,4 @@ jobs: - name: frida run: export CC=/usr/local/Cellar/llvm/*/bin/clang; export CXX="$CC"++; cd frida_mode; gmake - name: run tests - run: sudo -E ./afl-system-config ; export AFL_SKIP_CPUFREQ=1 ; gmake tests + run: sudo -E ./afl-system-config ; gmake tests |