Skip to content

Commit

Permalink
Clone bitcoin-core/qa-assets only when running fuzz tests (#1401)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouzo authored Aug 2, 2022
1 parent 7568a27 commit 8d44594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/test/04_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mkdir -p "${BASE_SCRATCH_DIR}"
#ccache echo "Creating ccache dir if it didn't already exist"
mkdir -p "${CCACHE_DIR}"

if [ ! -d ${DIR_QA_ASSETS} ]; then
if [ ! -d ${DIR_QA_ASSETS} ] && [ "$RUN_FUZZ_TESTS" = "true" ]; then
git clone https://github.com/bitcoin-core/qa-assets ${DIR_QA_ASSETS}
fi
export DIR_FUZZ_IN=${DIR_QA_ASSETS}/fuzz_seed_corpus/
Expand Down

0 comments on commit 8d44594

Please sign in to comment.