diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-03-25 11:17:51 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-03-25 11:10:18 -0400 |
commit | fae1e992898aa6b36c402cec4085fbf6da9b33ad (patch) | |
tree | 46997039d840708dac45cc67132638c50b18fd50 /ci | |
parent | 3f5107d008e15efa364c53bd3ed4e819cd2c6712 (diff) |
ci: Only clone bitcoin-core/qa-assets when fuzzing
Diffstat (limited to 'ci')
-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 c6e8331a71..62c8df964a 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/ |