-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alberto Faria <[email protected]>
- Loading branch information
1 parent
8c4e505
commit 2ac6418
Showing
3 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
provision: | ||
hardware: | ||
virtualization: | ||
is-supported: true | ||
|
||
prepare: | ||
- name: Install dependencies | ||
how: install | ||
missing: skip | ||
package: | ||
- bash | ||
- cargo | ||
- clippy | ||
- coreutils | ||
- crun | ||
- crun-krun | ||
- genisoimage | ||
- grep | ||
- guestfs-tools | ||
- libselinux-devel | ||
- libvirt-client | ||
- libvirt-daemon-driver-qemu | ||
- libvirt-daemon-log | ||
- make | ||
- openssh-clients | ||
- podman | ||
- qemu-img | ||
- qemu-system-x86-core | ||
- rustfmt | ||
- shadow-utils | ||
- util-linux | ||
- virtiofsd | ||
- name: Set up libvirt | ||
how: shell | ||
script: | ||
- systemctl start virtqemud | ||
|
||
/test: | ||
summary: Test | ||
execute: | ||
how: tmt | ||
script: | | ||
[[ -e /dev/kvm ]] && | ||
PATH=$PATH:/root/.cargo/bin LIBGUESTFS_BACKEND=direct make test |