You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
37 lines
1.4 KiB
From dce909e06ba1471d5bbc2174bd7672be684bdf64 Mon Sep 17 00:00:00 2001
|
|
From: Petr Lautrbach <lautrbach@redhat.com>
|
|
Date: Mon, 3 Jun 2024 15:44:28 +0200
|
|
Subject: [PATCH] gitlab-ci: fix Fedora and Debian build requirements
|
|
Content-type: text/plain
|
|
|
|
Signed-off-by: Petr Lautrbach <lautrbach@redhat.com>
|
|
---
|
|
.gitlab-ci.yml | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
|
|
index bea5081bb0b9..f316357a9164 100644
|
|
--- a/.gitlab-ci.yml
|
|
+++ b/.gitlab-ci.yml
|
|
@@ -31,6 +31,7 @@ build:debian:
|
|
apt-get -y install autoconf automake libglib2.0-dev libdbus-glib-1-dev libnotify-dev
|
|
libgtk-3-dev gcc python3-selinux python3-gi python3-dbus python3-six python3-sepolicy
|
|
xdg-utils make intltool libaudit-dev libauparse-dev python3-pip python3-dasbus
|
|
+ python3-setuptools
|
|
- ./autogen.sh
|
|
- make
|
|
- make install
|
|
@@ -44,7 +45,8 @@ build:fedora:
|
|
dnf -y install make gcc automake autoconf libcap-ng-devel intltool gettext
|
|
python3 python3-devel desktop-file-utils dbus-glib-devel gtk2-devel libnotify-devel
|
|
audit-libs-devel libselinux-devel polkit-devel python3-libselinux python3-dasbus
|
|
- python3-gobject gtk3-devel xdg-utils intltool gettext python3 python3-devel
|
|
+ python3-gobject gtk3-devel xdg-utils intltool gettext
|
|
+ python3-setuptools python3-wheel python3-pip
|
|
- ./autogen.sh
|
|
- make
|
|
- make install
|
|
--
|
|
2.44.0
|
|
|