Skip to content

Commit a361399

Browse files
committed
github: Fix potential 32-bit package installations.
On the latest Fedora 43 image, 'dnf builddep' may install the 32-bit version of libcap-ng-devel, which causes the build to fail. This change forces builddep to exclude 32-bit packages, ensuring the correct x86_64 variants are installed. Acked-by: Ilya Maximets <i.maximets@ovn.org> Signed-off-by: Eelco Chaudron <echaudro@redhat.com>
1 parent 19808e9 commit a361399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ jobs:
645645
dnf install -y rpm-build dnf-plugins-core
646646
sed -e 's/@VERSION@/0.0.1/' rhel/openvswitch-fedora.spec.in \
647647
> /tmp/ovs.spec
648-
dnf builddep -y /tmp/ovs.spec
648+
dnf builddep --exclude='*.i686' -y /tmp/ovs.spec
649649
rm -f /tmp/ovs.spec
650650
651651
- name: configure

0 commit comments

Comments
 (0)