diff options
| author | MarcoFalke <[email protected]> | 2020-03-25 11:17:51 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-03-25 11:10:18 -0400 |
| commit | fae1e992898aa6b36c402cec4085fbf6da9b33ad (patch) | |
| tree | 46997039d840708dac45cc67132638c50b18fd50 | |
| parent | Merge #18423: tests: Add fuzzing harness for classes/functions in blockfilter... (diff) | |
| download | discoin-fae1e992898aa6b36c402cec4085fbf6da9b33ad.tar.xz discoin-fae1e992898aa6b36c402cec4085fbf6da9b33ad.zip | |
ci: Only clone bitcoin-core/qa-assets when fuzzing
| -rwxr-xr-x | ci/test/04_install.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/test/04_install.sh b/ci/test/04_install.sh index c6e8331a7..62c8df964 100755 --- a/ci/test/04_install.sh +++ b/ci/test/04_install.sh @@ -102,7 +102,9 @@ else fi if [ ! -d ${DIR_QA_ASSETS} ]; then + if [ "$RUN_FUZZ_TESTS" = "true" ]; then DOCKER_EXEC git clone https://github.com/bitcoin-core/qa-assets ${DIR_QA_ASSETS} + fi fi export DIR_FUZZ_IN=${DIR_QA_ASSETS}/fuzz_seed_corpus/ |