• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vagrant-libvirt / vagrant-libvirt / 7342124073
79%

Build:
DEFAULT BRANCH: main
Ran 27 Dec 2023 09:47PM UTC
Jobs 1
Files 55
Run time 4s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

27 Dec 2023 09:45PM UTC coverage: 78.663%. Remained the same
7342124073

push

github

web-flow
Add support for qemu-img v8 to create_box.sh (#1790)

Since version 8 of qemu-img tool it produces more verbose JSON-output
with multiple `virtual-size` keys which leads to incorrect generation of
`metadata.json` file (all values of `virtual-size` are placed into file
and it becomes non-valid JSON).

This behavious was described in #1746 .

Example of old JSON output:
{
    "virtual-size": 34359738368,
    "filename": "vm-100-disk-0.qcow2",
    "cluster-size": 65536,
    "format": "qcow2",
    "actual-size": 2941440,
    "format-specific": {
        "type": "qcow2",
        "data": {
            "compat": "1.1",
            "compression-type": "zlib",
            "lazy-refcounts": false,
            "refcount-bits": 16,
            "corrupt": false,
            "extended-l2": false
        }
    },
    "dirty-flag": false
}

Example of new JSON output:
{
    "children": [
        {
            "name": "file",
            "info": {
                "children": [
                ],
                "virtual-size": 42956488704,
                "filename": "/var/lib/libvirt/images/proxmox_6.4.qcow2",
                "format": "file",
                "actual-size": 1305301504,
                "format-specific": {
                    "type": "file",
                    "data": {
                    }
                },
                "dirty-flag": false
            }
        }
    ],
    "virtual-size": 42949672960,
    "filename": "/var/lib/libvirt/images/proxmox_6.4.qcow2",
    "cluster-size": 65536,
    "format": "qcow2",
    "actual-size": 1305301504,
    "format-specific": {
        "type": "qcow2",
        "data": {
            "compat": "1.1",
            "compression-type": "zlib",
            "lazy-refcounts": true,
            "refcount-bits": 16,
            "corrupt": false,
            "extended-l2": false
        }
    },
    "dirty-flag": false
}

This change adds comatibility... (continued)

3119 of 3965 relevant lines covered (78.66%)

979.49 hits per line

Jobs
ID Job ID Ran Files Coverage
1 7342124073.1 27 Dec 2023 09:47PM UTC 0
78.66
GitHub Action Run
Source Files on build 7342124073
Detailed source file information is not available for this build.
  • Back to Repo
  • a94ce0d7 on github
  • Prev Build on main (#6112974155)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc