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 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
33 lines
777 B
YAML
33 lines
777 B
YAML
name: minimal-debug-locale
|
|
description: Test recipe with locale stage to debug stage execution
|
|
base-image: debian:trixie-slim
|
|
image-version: "0.1"
|
|
|
|
stages:
|
|
- type: org.osbuild.debian.apt
|
|
options:
|
|
packages:
|
|
- locales
|
|
- tzdata
|
|
- bash
|
|
- coreutils
|
|
update: true
|
|
clean: true
|
|
|
|
- type: org.osbuild.debian.locale
|
|
options:
|
|
language: en_US.UTF-8
|
|
default_locale: en_US.UTF-8
|
|
|
|
output:
|
|
formats: ["raw"]
|
|
size: "2G"
|
|
path: "minimal-debug-locale"
|
|
|
|
metadata:
|
|
author: "particle-os"
|
|
category: "debug"
|
|
tags: ["debug", "minimal", "particle-os", "locale"]
|
|
description: "Test recipe with locale stage to debug stage execution"
|
|
target_audience: "Developers debugging particle-os"
|
|
based_on: "debian:trixie-slim"
|