]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci: use GNU coreutils on ubuntu:rolling
authorBenjamin Drung <benjamin.drung@canonical.com>
Mon, 1 Dec 2025 13:51:08 +0000 (14:51 +0100)
committerNeal Gompa (ニール・ゴンパ) <ngompa13@gmail.com>
Mon, 1 Dec 2025 15:02:29 +0000 (10:02 -0500)
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.

test/container/Dockerfile-debian

index e8586cf5a741e053333614d2d836245f87b171ea..24e5389898f9a16e4b9170e7245d9794af8f2311 100644 (file)
@@ -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