- Flattened nested bootupd/bootupd/ structure to root level - Moved all core project files to root directory - Added proper Debian packaging structure (debian/ directory) - Created build scripts and CI configuration - Improved project organization for CI/CD tools - All Rust source, tests, and configuration now at root level - Added GitHub Actions workflow for automated testing - Maintained all original functionality while improving structure
9 lines
246 B
Bash
Executable file
9 lines
246 B
Bash
Executable file
#!/bin/bash
|
|
set -xeuo pipefail
|
|
|
|
# Prow jobs don't support adding emptydir today
|
|
export COSA_SKIP_OVERLAY=1
|
|
cosa init --force https://github.com/coreos/fedora-coreos-config/
|
|
cosa fetch
|
|
cosa build
|
|
cosa kola run --qemu-firmware uefi 'ext.bootupd.*'
|