ci: Install all the glbic langpacks in the fedora image

Also remove the coreutils swap from the toolbox since
it's already done in the base image

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7762>
This commit is contained in:
Jordan Petridis 2024-10-30 15:22:59 +02:00 committed by GStreamer Marge Bot
parent dba08b2405
commit 94737cc108
2 changed files with 1 additions and 3 deletions

View file

@ -6,6 +6,7 @@ set -eux
# We need them to cleanly build our doc. # We need them to cleanly build our doc.
sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
dnf -y swap coreutils-single coreutils-full dnf -y swap coreutils-single coreutils-full
dnf -y swap glibc-minimal-langpack glibc-all-langpacks
# Add rpm fusion repositories in order to access all of the gst plugins # Add rpm fusion repositories in order to access all of the gst plugins
dnf install -y \ dnf install -y \

View file

@ -95,9 +95,6 @@ build_container() {
# glib2 # glib2
# ) # )
buildah run $build_cntr dnf -y swap coreutils-single coreutils-full
buildah run $build_cntr dnf -y swap glibc-minimal-langpack glibc-all-langpacks
buildah run $build_cntr dnf install -y "${extra_packages[@]}" buildah run $build_cntr dnf install -y "${extra_packages[@]}"
buildah run $build_cntr dnf install -y "${our_extra_packages[@]}" buildah run $build_cntr dnf install -y "${our_extra_packages[@]}"
# buildah run $build_cntr dnf debuginfo-install -y "${debug_packages[@]}" # buildah run $build_cntr dnf debuginfo-install -y "${debug_packages[@]}"