mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 10:58:58 +00:00
Run make_dist from azure pipeline
This commit is contained in:
parent
f162a229f6
commit
8d6f923e13
@ -11,6 +11,12 @@ jobs:
|
|||||||
artifactName: distfiles
|
artifactName: distfiles
|
||||||
displayName: 'Upload extra distribution files'
|
displayName: 'Upload extra distribution files'
|
||||||
condition: eq(variables['System.PullRequest.IsFork'], 'False')
|
condition: eq(variables['System.PullRequest.IsFork'], 'False')
|
||||||
|
- task: PublishBuildArtifacts@1
|
||||||
|
inputs:
|
||||||
|
pathtoPublish: '$(System.DefaultWorkingDirectory)/distribution'
|
||||||
|
artifactName: distribution
|
||||||
|
displayName: 'Upload source distribution'
|
||||||
|
condition: eq(variables['System.PullRequest.IsFork'], 'False')
|
||||||
- job: Windows
|
- job: Windows
|
||||||
pool:
|
pool:
|
||||||
vmImage: vs2017-win2016
|
vmImage: vs2017-win2016
|
||||||
|
@ -9,3 +9,7 @@ sudo apt-get -y install \
|
|||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
make -k check
|
make -k check
|
||||||
make distfiles.zip
|
make distfiles.zip
|
||||||
|
./make_dist --ci --no-tests
|
||||||
|
mkdir distribution
|
||||||
|
cp /tmp/qpdf*-ci.tar.gz distribution
|
||||||
|
sha256sum distribution/*
|
||||||
|
@ -85,7 +85,7 @@ if ($version_error)
|
|||||||
die "$whoami: version numbers are not consistent\n";
|
die "$whoami: version numbers are not consistent\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
run("./configure --enable-doc-maintenance --enable-werror");
|
run("./configure --disable-shared --enable-doc-maintenance --enable-werror");
|
||||||
run("make -j8 build_manual");
|
run("make -j8 build_manual");
|
||||||
run("make distclean");
|
run("make distclean");
|
||||||
cd("/tmp");
|
cd("/tmp");
|
||||||
|
Loading…
Reference in New Issue
Block a user