mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-23 11:28:56 +00:00
4628461383
Use free Azure Pipelines to do Linux, Windows, and Mac build and test and to generate Windows binary distributions.
13 lines
336 B
Bash
Executable File
13 lines
336 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
sudo apt-get update
|
|
sudo apt-get -y install \
|
|
autoconf build-essential zlib1g-dev libjpeg-dev \
|
|
docbook-xsl fop xsltproc libxml2-utils inkscape imagemagick
|
|
./autogen.sh
|
|
./configure --enable-werror --enable-doc-maintenance \
|
|
--enable-show-failed-test-output
|
|
make -j$(nproc)
|
|
make -k check
|
|
make distfiles.zip
|