diff --git a/projects/bitcoin-core/Dockerfile b/projects/bitcoin-core/Dockerfile index 35e304ced..6a2040a32 100644 --- a/projects/bitcoin-core/Dockerfile +++ b/projects/bitcoin-core/Dockerfile @@ -22,7 +22,7 @@ FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update && apt-get install -y \ build-essential libtool autotools-dev automake pkg-config bsdmainutils python3 \ make automake cmake curl g++-multilib libtool binutils-gold bsdmainutils pkg-config patch bison \ - wget zip parallel + wget zip RUN git clone --depth=1 https://github.com/bitcoin/bitcoin.git bitcoin-core RUN git clone --depth=1 https://github.com/bitcoin-core/qa-assets bitcoin-core/assets diff --git a/projects/bitcoin-core/build.sh b/projects/bitcoin-core/build.sh index 4c4458844..172dbe84d 100755 --- a/projects/bitcoin-core/build.sh +++ b/projects/bitcoin-core/build.sh @@ -84,8 +84,7 @@ for fuzz_target in ${FUZZ_TARGETS[@]}; do ( cd assets/fuzz_seed_corpus if [ -d "$fuzz_target" ]; then - sem -j+0 zip --recurse-paths --quiet --junk-paths "$OUT/${fuzz_target}_seed_corpus.zip" "${fuzz_target}" + zip --recurse-paths --quiet --junk-paths "$OUT/${fuzz_target}_seed_corpus.zip" "${fuzz_target}" fi ) done -sem --wait