- Add main ostree-backport.sh script with distribution selection - Add wrapper scripts: backport-noble.sh and backport-trixie.sh - Add usage-guide.sh for comprehensive documentation - Update CI/CD workflows with improved multi-distribution support - Add test-build.yml workflow for quick validation - Update README.md with multi-distribution documentation - Add CI-CD-IMPROVEMENTS.md with detailed workflow documentation - Remove old .deb files (steam.deb, wget_1.21.4-1ubuntu4.1_amd64.deb) Features: - Ubuntu Noble: Source from Questing, target Noble - Debian Trixie: Source from sid, target Trixie - Enhanced error handling and logging - Manual triggers for single/all distributions - Comprehensive CI/CD documentation
12 lines
No EOL
336 B
Bash
Executable file
12 lines
No EOL
336 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Wrapper script for Debian Trixie ostree backport
|
|
# This script calls the main backport script with trixie as the target
|
|
|
|
echo "=== Debian Trixie (12) ostree Backport ==="
|
|
echo "Source: Debian sid"
|
|
echo "Target: Debian Trixie"
|
|
echo ""
|
|
|
|
# Call the main backport script with trixie as the target
|
|
./ostree-backport.sh trixie |