fuzzing.yml: Ensure that "make dist" includes all files for fuzzing

This commit is contained in:
Sebastian Pipping 2025-03-14 22:55:56 +01:00
parent 7959225d05
commit 1c24499c1b

View file

@ -71,9 +71,26 @@ jobs:
run: |-
set -x
sudo apt-get install --yes --no-install-recommends -V \
autoconf \
automake \
docbook2x \
libtool \
libprotobuf-dev \
lzip \
protobuf-compiler
- name: Turn Git clone into Autotools "make dist" release tarball
run: |-
set -x
pushd expat/
./buildconf.sh
./configure
make dist
popd
tar xf expat/expat-*.tar.xz
rm -R expat/
mv expat-* expat
- name: Build Expat fuzzers
run: |
set -x -o pipefail