Skip to content

Commit

Permalink
Merge pull request #384 from ros-infrastructure/fix_sourcedeb_stretch
Browse files Browse the repository at this point in the history
pass -d to skip check for build dependencies, do not sign the .buildinfo file
  • Loading branch information
dirk-thomas authored Feb 22, 2017
2 parents ec21874 + 0bb83c7 commit 8c1e60a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ros_buildfarm/sourcedeb_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ def build_sourcedeb(sources_dir, os_name=None, os_code_name=None):
# dpkg-buildpackage args
'-S']
if os_name == 'debian' and os_code_name == 'stretch':
# without this dpkg-genbuildinfo assumes a full build
# which will check if the build deps are installed
cmd.append('--buildinfo-option=source')
# don't fail for not installed build dependencies
cmd.append('-d')
# do not sign the .buildinfo file, since dpkg 1.18.19
cmd.append('-ui')
cmd += [
# dpkg-buildpackage args
'-us', '-uc',
Expand Down

0 comments on commit 8c1e60a

Please sign in to comment.