- 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
36 lines
830 B
YAML
36 lines
830 B
YAML
# Ubuntu Jammy (22.04 LTS) - AMD64
|
|
# Equivalent to Mock's rhel-9-x86_64 config
|
|
description: "Ubuntu Jammy (22.04 LTS) - AMD64"
|
|
chroot_name: "ubuntu-jammy-amd64"
|
|
architecture: "amd64"
|
|
suite: "jammy"
|
|
mirror: "http://archive.ubuntu.com/ubuntu/"
|
|
|
|
# Build environment
|
|
build_env:
|
|
DEB_BUILD_OPTIONS: "parallel=4,nocheck"
|
|
DEB_BUILD_PROFILES: "nocheck"
|
|
DEB_CFLAGS_SET: "-O2"
|
|
DEB_CXXFLAGS_SET: "-O2"
|
|
DEB_LDFLAGS_SET: "-Wl,-z,defs"
|
|
|
|
# Build options
|
|
build_options:
|
|
- "--verbose"
|
|
- "--no-run-lintian"
|
|
|
|
# Chroot configuration
|
|
chroot_dir: "/var/lib/deb-mock/chroots"
|
|
chroot_config_dir: "/etc/schroot/chroot.d"
|
|
|
|
# sbuild configuration
|
|
sbuild_config: "/etc/sbuild/sbuild.conf"
|
|
sbuild_log_dir: "/var/log/sbuild"
|
|
|
|
# Output configuration
|
|
output_dir: "./output"
|
|
metadata_dir: "./metadata"
|
|
keep_chroot: false
|
|
verbose: false
|
|
debug: false
|
|
|