- Fix environment variable handling in sbuild wrapper - Remove unsupported --log-dir and --env options from sbuild command - Clean up unused imports and fix linting issues - Organize examples directory with official Debian hello package - Fix YAML formatting (trailing spaces, newlines) - Remove placeholder example files - All tests passing (30/30) - Successfully tested build with official Debian hello package
23 lines
468 B
YAML
23 lines
468 B
YAML
# Test configuration for building hello package
|
|
chroot_name: debian-bookworm-amd64
|
|
architecture: amd64
|
|
suite: bookworm
|
|
basedir: ./chroots
|
|
chroot_dir: ./chroots
|
|
cache_dir: ./cache
|
|
output_dir: ./output
|
|
chroot_home: /home/build
|
|
|
|
# Speed optimization
|
|
use_root_cache: true
|
|
root_cache_dir: ./cache/root-cache
|
|
use_package_cache: true
|
|
package_cache_dir: ./cache/package-cache
|
|
use_ccache: false
|
|
parallel_jobs: 2
|
|
|
|
# Build settings
|
|
keep_chroot: false
|
|
verbose: true
|
|
debug: false
|
|
|