simple-cli/test-integration.sh
joe d0d29139e5
Some checks failed
Build Simple CLI / build (push) Failing after 1s
Add comprehensive documentation, live-build configuration, and testing framework
- Add community release and integration documentation
- Add production deployment and testing framework guides
- Add live-build configuration with hooks and package lists
- Add VM management and testing scripts
- Update .gitignore to block build artifacts and large files
- Remove old bootc package file
- Add comprehensive project completion summary
2025-08-19 20:54:58 -07:00

32 lines
985 B
Bash
Executable file

#!/bin/bash
echo "🚀 === Particle-OS Tools Integration Test ==="
echo ""
echo "📦 Testing apt-ostree package management..."
echo "Available commands:"
podman run --rm localhost/simple-cli:latest apt-ostree 2>&1 | grep -E "^ [a-z]+" | head -5
echo ""
echo "🔧 Testing bootupd bootloader management..."
echo "Available commands:"
podman run --rm localhost/simple-cli:latest bootupctl --help | grep -E "^ [a-z]+" | head -5
echo ""
echo "📊 System Status Check..."
echo "OSTree status:"
podman run --rm localhost/simple-cli:latest ostree --version 2>/dev/null || echo "OSTree not available"
echo ""
echo "🔍 Tool Verification:"
podman run --rm localhost/simple-cli:latest verify-tools
echo ""
echo "✅ Integration Test Complete!"
echo ""
echo "🎯 Next Steps:"
echo "1. Create a bootable disk image using bootc-image-builder"
echo "2. Test the image in QEMU"
echo "3. Verify all tools work in the booted system"
echo ""
echo "🚀 Ready for bootable image generation!"