summaryrefslogtreecommitdiff
path: root/check-all
blob: b8d2f179750bd8155147bd21f1f5b37cb4370ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

set -eu

tarball="$1"

tryit()
{
    local image="$1"
    local yaml="$2"
    echo "Testing $image"
    ./vmdb2 --rootfs-tarball "$tarball" \
            --verbose \
            --log check.log \
            --output "$image" \
            "$yaml"
    echo
}
        

#tryit simple.img simple.vmdb
#tryit luks.img luks.vmdb
#tryit lvm2.img lvm2.vmdb

tryit pc.img pc.vmdb
tryit uefi.img uefi.vmdb
tryit ansible.img ansible.vmdb
tryit smoke-pc.img smoke-pc.vmdb
tryit smoke-uefi.img smoke-uefi.vmdb