deb-bootc-image-builder/recipes/kernel-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

55 lines
1.3 KiB
YAML

name: "kernel-test"
description: "Test kernel installation and configuration for particle-os"
base-image: "debian:trixie-slim"
image-version: "1.0.0"
stages:
# Basic system setup
- type: org.osbuild.debian.apt
options:
packages:
- bash
- coreutils
- locales
- systemd
- linux-image-amd64
- initramfs-tools
update: true
clean: true
# System configuration
- type: org.osbuild.debian.locale
options:
language: en_US.UTF-8
default_locale: en_US.UTF-8
- type: org.osbuild.debian.timezone
options:
timezone: UTC
# Kernel installation
- type: org.osbuild.debian.kernel
options:
kernel_package: "linux-image-amd64"
initramfs: true
kernel_version: "6.1.0-13-amd64"
kernel_args: "root=/dev/sda1 rw console=ttyS0,115200 init=/bin/bash"
# Image creation
- type: org.osbuild.qemu
options:
formats: ["raw", "qcow2"]
size: "8G"
filename: "kernel-test"
output:
formats: ["raw", "qcow2"]
size: "8G"
path: "kernel-test"
metadata:
author: "particle-os team"
category: "testing"
tags: ["kernel", "debian", "testing", "particle-os"]
target_audience: "Developers testing kernel installation stage"
based_on: "debian:trixie-slim"