- Minimal archiso profile (base + linux only) - Test script runs build in container sandbox - Verifies end-to-end ISO generation pipeline Usage: ./scripts/test-iso-build.sh Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
446 B
Bash
15 lines
446 B
Bash
#!/usr/bin/env bash
|
|
# Minimal test profile for Debate ISO builds
|
|
|
|
iso_name="debate-test"
|
|
iso_label="DEBATE_TEST"
|
|
iso_publisher="Debate Platform <https://debate.example.com>"
|
|
iso_application="Debate Test ISO"
|
|
iso_version="test"
|
|
install_dir="arch"
|
|
buildmodes=('iso')
|
|
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito')
|
|
arch="x86_64"
|
|
pacman_conf="pacman.conf"
|
|
airootfs_image_type="squashfs"
|
|
airootfs_image_tool_options=('-comp' 'xz' '-b' '1M')
|