development toolbox does not work for Debian packages #21275
-
Explain what happensHello 👋 I am trying to setup a development environment (using distrobox) and I've got some errors that do not let me work with, here is what I've done so far: ps. following the documentation found here
Where the problem begins: Executing the tools/make-debs --quick command outputs the following: And when I try to execute solely the make command, the following appears: Version of Cockpit328 Where is the problem in Cockpit?Unknown or not applicable Server operating systemUbuntu Server operating system version22.04.1 What browsers are you using?Firefox, Brave System logNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hello @SirH2Os ! Our "tasks" development container is Fedora based. You cannot build Debian packages in it. You can work on the sources and build them the "upstream" way (./autogen.sh, make, etc., see https://github.com/cockpit-project/cockpit/blob/main/HACKING.md). If you want to build Debian packages, use a Debian tool like In our CI, we test Debian/Ubuntu by building them in a VM, e.g. |
Beta Was this translation helpful? Give feedback.
Hello @SirH2Os ! Our "tasks" development container is Fedora based. You cannot build Debian packages in it. You can work on the sources and build them the "upstream" way (./autogen.sh, make, etc., see https://github.com/cockpit-project/cockpit/blob/main/HACKING.md). If you want to build Debian packages, use a Debian tool like
schroot
orpbuilder
, or your host system.In our CI, we test Debian/Ubuntu by building them in a VM, e.g.
test/image-prepare ubuntu-2204
in your case.