2018-10-11 17:35:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install \
|
2019-11-06 02:31:56 +00:00
|
|
|
autoconf build-essential zlib1g-dev libjpeg-dev libgnutls28-dev \
|
2021-12-21 14:23:20 +00:00
|
|
|
libssl-dev libtiff-tools ghostscript
|
|
|
|
./configure --enable-werror \
|
2020-04-06 07:19:52 +00:00
|
|
|
--enable-crypto-native --enable-crypto-openssl --enable-crypto-gnutls \
|
2021-05-08 13:30:23 +00:00
|
|
|
--enable-show-failed-test-output --enable-test-compare-images
|
2018-12-21 22:25:23 +00:00
|
|
|
make -j$(nproc) -k
|
2019-11-06 02:31:56 +00:00
|
|
|
for i in $(./qpdf/build/qpdf --show-crypto); do
|
|
|
|
echo "*** Running tests with crypto provider $i"
|
|
|
|
env QPDF_CRYPTO_PROVIDER=$i make -k check
|
|
|
|
done
|
2021-12-13 12:43:26 +00:00
|
|
|
export TMPDIR=$PWD/dist-tmp
|
|
|
|
rm -rf $TMPDIR
|
2021-12-21 14:23:20 +00:00
|
|
|
./make_dist --ci
|
2018-10-13 15:59:05 +00:00
|
|
|
mkdir distribution
|
2021-12-13 12:43:26 +00:00
|
|
|
cp $TMPDIR/qpdf*-ci.tar.gz distribution
|
2018-10-13 15:59:05 +00:00
|
|
|
sha256sum distribution/*
|