Skip to content

Commit

Permalink
Merge pull request #475 from ethereum/ci_fuzzing
Browse files Browse the repository at this point in the history
ci: Cache fuzzing corpus
  • Loading branch information
chfast authored Jun 14, 2022
2 parents 1f6005b + eaccda8 commit 4a5dada
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -411,12 +411,19 @@ jobs:
CMAKE_OPTIONS: -DEVMONE_FUZZING=ON
steps:
- build
- restore_cache:
name: "Restore fuzzing corpus"
key: &fuzzing-corpus corpus-v1
- run:
name: "Run evmone-fuzzer"
working_directory: ~/build
command: |
bin/evmone-fuzzer -runs=10000000 -fork=$CMAKE_BUILD_PARALLEL_LEVEL -fork_corpus_groups=1 ~/corpus -create_missing_dirs=1 -max_len=100 -entropic_scale_per_exec_time=1 2>&1 | sed '/NEW_FUNC/d'
- save_cache:
name: "Save fuzzing corpus"
key: *fuzzing-corpus
paths:
- ~/corpus

macos-asan:
executor: macos
Expand Down

0 comments on commit 4a5dada

Please sign in to comment.