Skip to content
Snippets Groups Projects
Commit 3d996497 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Install build dependencies before building package

parent ba20288d
No related branches found
No related tags found
No related merge requests found
Pipeline #496 failed
...@@ -77,6 +77,9 @@ def build_package(repo_dir, package_dir, name, ...@@ -77,6 +77,9 @@ def build_package(repo_dir, package_dir, name,
for entry in _get_log_entries(): for entry in _get_log_entries():
run_checked(command + [entry]) run_checked(command + [entry])
command = ["apt-get", "build-dep", name]
run_checked(command)
command = ["debuild", "-b", "-uc", "-us"] command = ["debuild", "-b", "-uc", "-us"]
run_checked(command) run_checked(command)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment