]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
ci: change default fstype for Arch and openSUSE
authorJo Zzsi <jozzsicsataban@gmail.com>
Sat, 7 Sep 2024 03:29:14 +0000 (23:29 -0400)
committerLaszlo Gombos <laszlo.gombos@gmail.com>
Sat, 7 Sep 2024 19:41:55 +0000 (15:41 -0400)
Default (when test allows it) is now XFS for Arch
and btrfs for openSUSE.

test/container/Dockerfile-Arch
test/container/Dockerfile-OpenSuse-latest

index f3d0449c1b72e083a6cd254e2e0075b5e2e4139d..1a6817d5d0fa687d3094661bdde8dc92196aa23b 100644 (file)
@@ -1,5 +1,8 @@
 FROM docker.io/archlinux
 
+# prefer running tests with xfs
+ENV TEST_FSTYPE=xfs
+
 RUN pacman --noconfirm -Syu \
     asciidoc \
     astyle \
index 51118d83b96df9c8d898e967f2e62e4cdd0edb21..6833af0ad63bf94faa4587c35fd0b6ee04ceef86 100644 (file)
@@ -1,5 +1,8 @@
 FROM registry.opensuse.org/opensuse/tumbleweed-dnf:latest
 
+# prefer running tests with btrfs
+ENV TEST_FSTYPE=btrfs
+
 # Install needed packages for the dracut CI container
 RUN dnf -y install --setopt=install_weak_deps=False \
     asciidoc \