From a62d872ad663c76f87d48d022e5794ee859df1ca Mon Sep 17 00:00:00 2001 From: Andrea Bolognani Date: Tue, 28 Nov 2023 19:25:46 +0100 Subject: [PATCH] ci: Stop passing --nodeps to rpmbuild All BuildRequires should now be part of the build environment, so it's no longer needed. This ensures that, if we forget to add some BuildRequires to the build environment in the future, the mistake will be quickly detected. Signed-off-by: Andrea Bolognani Reviewed-by: Pavel Hrdina --- ci/jobs.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/jobs.sh b/ci/jobs.sh index b9e0494338..9a1c668d2e 100644 --- a/ci/jobs.sh +++ b/ci/jobs.sh @@ -94,7 +94,6 @@ run_rpmbuild() { run_cmd rpmbuild \ --clean \ - --nodeps \ --define "_without_$build1 1" \ --define "_without_$build2 1" \ -ta build/meson-dist/libvirt-*.tar.xz -- Gitee