Skip to content

Commit 547ffb4

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 242cadd commit 547ffb4

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
@@ -619,7 +619,7 @@ jobs:
619619
dnf install -y rpm-build dnf-plugins-core
620620
sed -e 's/@VERSION@/0.0.1/' rhel/openvswitch-fedora.spec.in \
621621
> /tmp/ovs.spec
622-
dnf builddep -y /tmp/ovs.spec
622+
dnf builddep --exclude='*.i686' -y /tmp/ovs.spec
623623
rm -f /tmp/ovs.spec
624624
625625
- name: configure

0 commit comments

Comments
 (0)