From 4628461383855610f87c8df5c64535f521056a32 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 11 Oct 2018 13:35:07 -0400 Subject: Set up Azure Pipelines Use free Azure Pipelines to do Linux, Windows, and Mac build and test and to generate Windows binary distributions. --- azure-pipelines/build-linux | 12 ++++++++++++ azure-pipelines/build-mac | 13 +++++++++++++ azure-pipelines/build-windows | 40 +++++++++++++++++++++++++++++++++++++++ azure-pipelines/build-windows.bat | 16 ++++++++++++++++ 4 files changed, 81 insertions(+) create mode 100755 azure-pipelines/build-linux create mode 100755 azure-pipelines/build-mac create mode 100755 azure-pipelines/build-windows create mode 100644 azure-pipelines/build-windows.bat (limited to 'azure-pipelines') diff --git a/azure-pipelines/build-linux b/azure-pipelines/build-linux new file mode 100755 index 00000000..89be3c6b --- /dev/null +++ b/azure-pipelines/build-linux @@ -0,0 +1,12 @@ +#!/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 diff --git a/azure-pipelines/build-mac b/azure-pipelines/build-mac new file mode 100755 index 00000000..95ea884b --- /dev/null +++ b/azure-pipelines/build-mac @@ -0,0 +1,13 @@ +#!/bin/bash +set -ex +curl -L https://www.ijg.org/files/jpegsrc.v9c.tar.gz -o jpegsrc.v9c.tar.gz +tar xzf jpegsrc.v9c.tar.gz +cd jpeg-9c +./configure +make +sudo make install +cd .. +unzip distfiles/distfiles.zip +./configure --enable-werror --enable-show-failed-test-output +make -j$(nproc) +make -k check diff --git a/azure-pipelines/build-windows b/azure-pipelines/build-windows new file mode 100755 index 00000000..834c884f --- /dev/null +++ b/azure-pipelines/build-windows @@ -0,0 +1,40 @@ +#!/bin/bash +set -ex +cd $(dirname $0)/.. +wordsize=$1 +tool=$2 + +if [[ $tool == mingw ]]; then + pacman -Sy --noconfirm make base-devel tar zip unzip + if [[ $wordsize == 64 ]]; then + pacman -Sy --noconfirm mingw-w64-x86_64-toolchain + PATH="/c/tools/msys64/mingw64/bin:$PATH" + else + pacman -Sy --noconfirm mingw-w64-i686-toolchain + PATH="/c/tools/msys64/mingw32/bin:$PATH" + fi + g++ -v +elif [[ $tool == msvc ]]; then + cl +fi +unzip distfiles/distfiles.zip +curl -L https://downloads.sourceforge.net/project/qpdf/external-libs/2017-08-21/qpdf-external-libs-bin.zip -o qpdf-external-libs-bin.zip +unzip qpdf-external-libs-bin.zip +cwd=`pwd` +PATH=$cwd/libqpdf/build:$PATH + +installdir=install-$tool$wordsize +rm -rf $installdir +./config-$tool --with-windows-wordsize=$wordsize --enable-show-failed-test-output +make -j$(nproc) +# XXX Fix test fragility -- it's always check status in the content preservation tests. +make -k check || echo "WARNING: TESTS FAILED" +make install + +v=`(cd $installdir; ls -d qpdf-*)` +cp -p README-windows-install.txt $installdir/$v/README.txt +mkdir installers +(cd $installdir; zip -r ../installers/$v-bin-$tool$wordsize.zip $v) + +set +x +ls -l installers diff --git a/azure-pipelines/build-windows.bat b/azure-pipelines/build-windows.bat new file mode 100644 index 00000000..ba11b4fd --- /dev/null +++ b/azure-pipelines/build-windows.bat @@ -0,0 +1,16 @@ +@echo on +@rem Usage: build-windows {32|64} {msvc|mingw} +if %2 == msvc ( + if %1 == 64 ( + call "%VS140COMNTOOLS%\..\..\VC\bin\amd64\vcvars64.bat" + ) else ( + call "%VS140COMNTOOLS%\..\..\VC\bin\vcvars32.bat" + ) + choco install zip + bash ./azure-pipelines/build-windows %1 %2 +) else ( + @rem The vs2017-win2016 pool has an ancient 64-bit-only mingw. + @rem Install msys2 so we can get current gcc toolchains. + choco install msys2 + C:\tools\msys64\usr\bin\env.exe MSYSTEM=MINGW64 /bin/bash -l %CD%/azure-pipelines/build-windows %1 %2 +) -- cgit v1.2.3-70-g09d2