deb-mock/deb_mock/configs/ubuntu-jammy-amd64.yaml
robojerk 5e7f4b0562
Some checks failed
Build Deb-Mock Package / build (push) Successful in 55s
Lint Code / Lint All Code (push) Failing after 3s
Test Deb-Mock Build / test (push) Failing after 53s
Fix sbuild integration and clean up codebase
- 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
2025-08-04 04:34:32 +00:00

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