This commit is contained in:
David Prevot 2022-06-22 15:46:09 +02:00
parent cc5661eb47
commit 4d2a3841af

View file

@ -18,11 +18,11 @@ pipeline {
sh 'echo "Building ${env.JOB_NAME}..."' sh 'echo "Building ${env.JOB_NAME}..."'
sh '/usr/bin/generate-git-snapshot' sh '/usr/bin/generate-git-snapshot'
sh '/usr/bin/build-and-provide-package' sh '/usr/bin/build-and-provide-package'
# Lintian /* Lintian */
sh 'mkdir -p report' sh 'mkdir -p report'
# For the source package: /* For the source package */
sh '/usr/bin/lintian-junit-report *.dsc > report/lintian.xml' sh '/usr/bin/lintian-junit-report *.dsc > report/lintian.xml'
# For the binary package: /* For the binary package */
sh '/usr/bin/lintian-junit-report *.changes >> report/lintian.xml' sh '/usr/bin/lintian-junit-report *.changes >> report/lintian.xml'
} }
} }