deb-bootc-image-builder/recipes/qemu-test.yml
joe 0409f1d67c
Some checks failed
particle-os CI / Test particle-os (push) Failing after 1s
particle-os CI / Integration Test (push) Has been skipped
particle-os CI / Security & Quality (push) Failing after 1s
Test particle-os Basic Functionality / test-basic (push) Failing after 1s
Tests / test (1.21.x) (push) Failing after 1s
Tests / test (1.22.x) (push) Failing after 1s
particle-os CI / Build and Release (push) Has been skipped
Add comprehensive documentation, recipes, and testing framework
- Add extensive documentation covering current status, usage, and testing strategies
- Add recipe files for various image configurations (minimal, debug, kernel test, etc.)
- Add testing and management scripts for comprehensive testing workflows
- Add Go module configuration and updated Go code
- Add manual bootable image creation script
- Update todo with current project status and next steps
2025-08-19 20:50:20 -07:00

34 lines
811 B
YAML

name: qemu-test
description: Test recipe for QEMU stage and multiple image formats
base-image: debian:trixie-slim
image-version: "0.1"
stages:
- type: org.osbuild.debian.apt
options:
packages:
- bash
- coreutils
- locales
- tzdata
update: true
clean: true
- type: org.osbuild.qemu
options:
formats: ["raw", "qcow2", "vmdk", "vdi"]
size: "2G"
filename: "qemu-test"
output:
formats: ["raw", "qcow2", "vmdk", "vdi"]
size: "2G"
path: "qemu-test"
metadata:
author: "particle-os"
category: "test"
tags: ["test", "qemu", "formats", "particle-os"]
description: "Test recipe for QEMU stage and multiple image formats"
target_audience: "Developers testing particle-os QEMU functionality"
based_on: "debian:trixie-slim"