deb-bootc-image-builder/recipes/minimal-test.yml
robojerk d2d4c2e4e7
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 2s
Tests / test (1.22.x) (push) Failing after 1s
particle-os CI / Build and Release (push) Has been skipped
Major refactor: Remove debos integration, add particle-os CLI system, implement OSTree stages, and create comprehensive build pipeline
2025-08-12 16:17:39 -07:00

80 lines
1.8 KiB
YAML

name: minimal-test
description: Minimal test system - just the basics to verify core functionality
base-image: debian:trixie-slim
image-version: "13"
stages:
- type: org.osbuild.debian.apt
options:
packages:
# Absolute minimum packages
- curl
- wget
- vim
- less
- locales
- ca-certificates
- tzdata
# Kernel and boot essentials
- linux-image-amd64
- linux-headers-amd64
- initramfs-tools
- grub-pc
- grub2-common
# Basic system tools
- systemd
- systemd-sysv
- udev
- procps
- util-linux
- mount
- passwd
- login
- bash
- coreutils
update: true
clean: true
- 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
- type: org.osbuild.debian.users
options:
users:
testuser:
password: "$6$rounds=656000$salt$hashedpassword"
shell: /bin/bash
groups: ["users"]
uid: 1000
gid: 1000
home: /home/testuser
comment: "Test User"
default_shell: /bin/bash
default_home: /home
- type: org.osbuild.qemu
options:
formats: ["raw"]
size: "5G"
filename: "minimal-test"
output:
formats: ["raw"]
size: "5G"
path: "minimal-test"
metadata:
author: "particle-os"
category: "testing"
tags: ["minimal", "testing", "core-functionality", "bootable"]
description: "Minimal test system to verify core particle-os functionality"
target_audience: "Developers, testing, core functionality validation"
based_on: "debian:trixie-slim"