diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-03-25 13:36:47 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-03-25 13:36:50 -0400 |
commit | 7c942250264e75957d7737ff0d2f5c72e0e19a42 (patch) | |
tree | 03c63cc7b027023d9423e5e37e707246caa07b1c | |
parent | 60a39a96fc04c9bde98f0a55c0deb2a0b3fc25a7 (diff) | |
parent | fae1e992898aa6b36c402cec4085fbf6da9b33ad (diff) |
Merge #18430: ci: Only clone bitcoin-core/qa-assets when fuzzing
fae1e992898aa6b36c402cec4085fbf6da9b33ad ci: Only clone bitcoin-core/qa-assets when fuzzing (MarcoFalke)
Pull request description:
Currently the only content of that repo are some seeds, so we can speed up some ci builds
ACKs for top commit:
laanwj:
ACK fae1e992898aa6b36c402cec4085fbf6da9b33ad (provided this passes travis)
Tree-SHA512: ed813738e7f24bb56a2f12aa3b398e414eb4f0ba98379836a33ff3e5602cbf42a28e89aad10e346468191ecddc03e60d5b236097112e27c07cb1c2293533ea58
-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/ |