Include .buildinfo files in list of artifact files

dpkg-buildpackage in sid will now include .buildinfo files in the .changes files produced.

We need to include the buildinfo file in the artifact files we store,
to not fail with something like:

| Cannot find file 'foobar_0.42.buildinfo' needed by 'foobar_0.42_amd64.changes'!

Thanks: Christoph Berg <myon@debian.org>
Closes #165
remotes/origin/debian/stretch
Michael Prokop 9 years ago
parent 798fdf6cd8
commit e6373df6db

@ -32,7 +32,7 @@
/usr/bin/lintian-junit-report *.dsc > report/lintian.xml
publishers:
- archive:
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,lintian.txt'
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,*.buildinfo,lintian.txt'
- trigger:
project: '{name}-binaries'
- junit:
@ -83,7 +83,7 @@
/usr/bin/lintian-junit-report *.changes > report/lintian.xml
publishers:
- archive:
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,lintian.txt'
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,*.buildinfo,lintian.txt'
- junit:
results: '**/lintian.xml'
keep-long-stdio: false

@ -33,7 +33,7 @@
/usr/bin/lintian-junit-report *.dsc > report/lintian.xml
publishers:
- archive:
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,lintian.txt'
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,*.buildinfo,lintian.txt'
- trigger:
project: '{name}-binaries'
- junit:
@ -83,7 +83,7 @@
/usr/bin/lintian-junit-report *.changes > report/lintian.xml
publishers:
- archive:
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,lintian.txt'
artifacts: '*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,*.buildinfo,lintian.txt'
- junit:
results: '**/lintian.xml'
keep-long-stdio: false

@ -384,7 +384,7 @@ class jenkins::config {
</builders>
<publishers>
<hudson.tasks.ArtifactArchiver>
<artifacts>*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,lintian.txt</artifacts>
<artifacts>*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,*.buildinfo,lintian.txt</artifacts>
<latestOnly>false</latestOnly>
</hudson.tasks.ArtifactArchiver>
<hudson.tasks.Fingerprinter>
@ -484,7 +484,7 @@ class jenkins::config {
</builders>
<publishers>
<hudson.tasks.ArtifactArchiver>
<artifacts>*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,lintian.txt</artifacts>
<artifacts>*.gz,*.bz2,*.xz,*.deb,*.dsc,*.git,*.changes,*.buildinfo,lintian.txt</artifacts>
<latestOnly>false</latestOnly>
</hudson.tasks.ArtifactArchiver>
<hudson.tasks.Fingerprinter>

Loading…
Cancel
Save