From: Benjamin Drung Date: Mon, 1 Dec 2025 13:51:08 +0000 (+0100) Subject: ci: use GNU coreutils on ubuntu:rolling X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e46ffb5e0f016fbc07291fda7ae619a1b38eaaf;p=thirdparty%2Fdracut-ng.git ci: use GNU coreutils on ubuntu:rolling Ubuntu rolling (which is currently 25.10) uses uutil's coreutils as well and is affected by the same bugs as Ubuntu devel. So use GNU coreutils instead of uutil's coreutils on Ubuntu rolling. --- diff --git a/test/container/Dockerfile-debian b/test/container/Dockerfile-debian index e8586cf5a..24e538989 100644 --- a/test/container/Dockerfile-debian +++ b/test/container/Dockerfile-debian @@ -25,7 +25,7 @@ RUN if [ "$DISTRIBUTION" != "debian:latest" ] ; then \ ; fi # use GNU coreutils instead of uutil's coreutils until https://github.com/uutils/coreutils/issues/9057 and https://launchpad.net/bugs/2129037 are fixed -RUN if [ "$DISTRIBUTION" = "ubuntu:devel" ]; then \ +RUN if [ "$DISTRIBUTION" = "ubuntu:devel" ] || [ "$DISTRIBUTION" = "ubuntu:rolling" ]; then \ DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends -o Dpkg::Use-Pty=0 \ coreutils-from-gnu coreutils-from-uutils- --allow-remove-essential; \ fi