Revert "bitcoin-core: Run zip in parallel" (#5858)

This commit is contained in:
MarcoFalke 2021-05-31 05:52:48 +02:00 committed by GitHub
parent 21d3528d1d
commit 4442574e30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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