ci: git, sbuild no clean
Some checks failed
CI / build (pull_request) Failing after 7m32s

This commit is contained in:
2025-12-25 17:13:23 +01:00
parent f19b1c33dd
commit a5536064ee
2 changed files with 2 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ jobs:
- name: Install runtime system dependencies
run: |
sudo apt-get update
sudo apt-get install -y pristine-tar sbuild mmdebstrap util-linux dpkg-dev
sudo apt-get install -y git pristine-tar sbuild mmdebstrap util-linux dpkg-dev
- name: Setup subuid/subgid
run: |
usermod --add-subuids 100000-200000 --add-subgids 100000-200000 ${USER:-root}

View File

@@ -15,6 +15,7 @@ pub fn build(
let mut cmd = ctx.command("sbuild");
cmd.current_dir(format!("{}/{}", build_root, package));
cmd.arg("--chroot-mode=unshare");
cmd.arg("--no-clean-source");
if cross {
cmd.arg(format!("--host={}", arch));