Skip to content

Commit db8d7bb

Browse files
jeckersbcgwalters
authored andcommitted
Use ext4 by default when building integration disk image
By default bootc will enable fsverity when ext4 is the chosen filesystem, and we need fsverity to do composefs testing. Signed-off-by: John Eckersberg <[email protected]>
1 parent b18d542 commit db8d7bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ DISK=target/bootc-integration-test.qcow2
4545
rm -vf "${DISK}"
4646
# testcloud barfs on .raw
4747
if test -n "${bcvk}"; then
48-
bcvk to-disk --format=qcow2 --disk-size "${SIZE}" localhost/bootc-integration "${DISK}"
48+
bcvk to-disk --format=qcow2 --disk-size "${SIZE}" --filesystem ext4 localhost/bootc-integration "${DISK}"
4949
else
5050
TMPDISK=target/bootc-integration-test.raw
5151
truncate -s "${SIZE}" "${TMPDISK}"
@@ -59,7 +59,7 @@ else
5959
-v $(pwd)/target:/target \
6060
localhost/bootc-integration \
6161
bootc install to-disk \
62-
--filesystem "xfs" \
62+
--filesystem "ext4" \
6363
--karg=console=ttyS0,115200n8 \
6464
--generic-image \
6565
--via-loopback \

0 commit comments

Comments
 (0)