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 | 6 | docbook-xsl fop xsltproc libxml2-utils inkscape imagemagick |
| 7 | 7 | ./configure --enable-werror --enable-doc-maintenance \ |
| 8 | 8 | --enable-show-failed-test-output |
| 9 | -make -j$(nproc) | |
| 9 | +make -j$(nproc) -k | |
| 10 | 10 | make -k check |
| 11 | 11 | make distfiles.zip |
| 12 | 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 | 4 | tar xzf jpegsrc.v9c.tar.gz |
| 5 | 5 | cd jpeg-9c |
| 6 | 6 | ./configure |
| 7 | -make | |
| 7 | +make -k | |
| 8 | 8 | sudo make install |
| 9 | 9 | cd .. |
| 10 | 10 | if [ -f distfiles/distfiles.zip ]; then |
| 11 | 11 | unzip distfiles/distfiles.zip |
| 12 | 12 | fi |
| 13 | 13 | ./configure --enable-werror --enable-show-failed-test-output |
| 14 | -make -j$(nproc) | |
| 14 | +make -j$(nproc) -k | |
| 15 | 15 | make -k check | ... | ... |
azure-pipelines/build-windows
| ... | ... | @@ -28,7 +28,7 @@ PATH=$cwd/libqpdf/build:$PATH |
| 28 | 28 | installdir=install-$tool$wordsize |
| 29 | 29 | rm -rf $installdir |
| 30 | 30 | ./config-$tool --with-windows-wordsize=$wordsize --enable-show-failed-test-output |
| 31 | -make -j$(nproc) | |
| 31 | +make -j$(nproc) -k | |
| 32 | 32 | make -k check |
| 33 | 33 | make install |
| 34 | 34 | ... | ... |