mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-04 00:06:17 +00:00
This provides some tooling for running blktests. The README.md contains documentation about the architecture. I am seeing some race-conditions that sometimes lead to boot freezes [1], so this is not really ready for automatic evaluation during a CI pipeline. [1] https://linaro.atlassian.net/browse/ORKO-37 Signed-off-by: Erik Schilling <erik.schilling@linaro.org> Link: https://linaro.atlassian.net/browse/ORKO-17
12 lines
240 B
Docker
12 lines
240 B
Docker
FROM fedora:39
|
|
RUN dnf install --quiet --assumeyes \
|
|
/usr/bin/qemu-system-x86_64 \
|
|
/usr/bin/qemu-img \
|
|
/usr/bin/virt-sysprep \
|
|
/usr/bin/ssh-keygen \
|
|
/usr/bin/ssh \
|
|
/usr/sbin/libvirtd \
|
|
wget \
|
|
&& dnf clean all
|
|
VOLUME /tests/
|