Skip to content

Commit 905101b

Browse files
examples: add a broken example case
Recent changes in the 6.15-rc kernel series have broken composefs-setup-root when running without using the newest features of the mount API (ie: with the pre-6.15 feature left enabled, which is the default). Add a case to the examples for testing that. Once it gets working again it would be useful to make sure it continues to work. Signed-off-by: Allison Karlitskaya <[email protected]>
1 parent a37c8b6 commit 905101b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

examples/bls/build

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ case "${os}" in
2424
containerfile='Containerfile.ubuntu'
2525
cargo build --release --features=pre-6.15
2626
;;
27+
rawhide-compat)
28+
# try a variant with rawhide using the old mount APIs
29+
# this is currently failing due to a suspected kernel behaviour change
30+
# https://lore.kernel.org/linux-fsdevel/CAOYeF9WQhFDe+BGW=Dp5fK8oRy5AgZ6zokVyTj1Wp4EUiYgt4w@mail.gmail.com
31+
containerfile='Containerfile.rawhide'
32+
cargo build --release --features=pre-6.15
33+
;;
2734
rawhide)
2835
containerfile='Containerfile.rawhide'
2936
cargo build --release --no-default-features --features=oci

0 commit comments

Comments
 (0)