Commit a4de20cd3f6ac3f583d504b3d59699ec42846e06
1 parent
352ce9b2
Azure pipelines: use make -k
Showing
3 changed files
with
4 additions
and
4 deletions
azure-pipelines/build-linux
| @@ -6,7 +6,7 @@ sudo apt-get -y install \ | @@ -6,7 +6,7 @@ sudo apt-get -y install \ | ||
| 6 | docbook-xsl fop xsltproc libxml2-utils inkscape imagemagick | 6 | docbook-xsl fop xsltproc libxml2-utils inkscape imagemagick |
| 7 | ./configure --enable-werror --enable-doc-maintenance \ | 7 | ./configure --enable-werror --enable-doc-maintenance \ |
| 8 | --enable-show-failed-test-output | 8 | --enable-show-failed-test-output |
| 9 | -make -j$(nproc) | 9 | +make -j$(nproc) -k |
| 10 | make -k check | 10 | make -k check |
| 11 | make distfiles.zip | 11 | make distfiles.zip |
| 12 | ./make_dist --ci --no-tests | 12 | ./make_dist --ci --no-tests |
azure-pipelines/build-mac
| @@ -4,12 +4,12 @@ curl -L https://www.ijg.org/files/jpegsrc.v9c.tar.gz -o jpegsrc.v9c.tar.gz | @@ -4,12 +4,12 @@ curl -L https://www.ijg.org/files/jpegsrc.v9c.tar.gz -o jpegsrc.v9c.tar.gz | ||
| 4 | tar xzf jpegsrc.v9c.tar.gz | 4 | tar xzf jpegsrc.v9c.tar.gz |
| 5 | cd jpeg-9c | 5 | cd jpeg-9c |
| 6 | ./configure | 6 | ./configure |
| 7 | -make | 7 | +make -k |
| 8 | sudo make install | 8 | sudo make install |
| 9 | cd .. | 9 | cd .. |
| 10 | if [ -f distfiles/distfiles.zip ]; then | 10 | if [ -f distfiles/distfiles.zip ]; then |
| 11 | unzip distfiles/distfiles.zip | 11 | unzip distfiles/distfiles.zip |
| 12 | fi | 12 | fi |
| 13 | ./configure --enable-werror --enable-show-failed-test-output | 13 | ./configure --enable-werror --enable-show-failed-test-output |
| 14 | -make -j$(nproc) | 14 | +make -j$(nproc) -k |
| 15 | make -k check | 15 | make -k check |
azure-pipelines/build-windows
| @@ -28,7 +28,7 @@ PATH=$cwd/libqpdf/build:$PATH | @@ -28,7 +28,7 @@ PATH=$cwd/libqpdf/build:$PATH | ||
| 28 | installdir=install-$tool$wordsize | 28 | installdir=install-$tool$wordsize |
| 29 | rm -rf $installdir | 29 | rm -rf $installdir |
| 30 | ./config-$tool --with-windows-wordsize=$wordsize --enable-show-failed-test-output | 30 | ./config-$tool --with-windows-wordsize=$wordsize --enable-show-failed-test-output |
| 31 | -make -j$(nproc) | 31 | +make -j$(nproc) -k |
| 32 | make -k check | 32 | make -k check |
| 33 | make install | 33 | make install |
| 34 | 34 |