blob: 1a9bed440fbcb3310e755b7d3405f7579703824a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
##############################################################################
# PACKAGE BUILD RELATED (additionally produce _source.changes)
##############################################################################
$distribution = 'bullseye';
$build_arch_all = 1;
$build_arch_any = 1;
$build_source = 0;
#$source_only_changes = 1;
#$verbose = 1;
#$ENV{'DEB_BUILD_OPTIONS'} = 'parallel=5';
##############################################################################
# POST-BUILD RELATED (turn off functionality by setting variables to 0)
##############################################################################
$run_lintian = 0;
# $lintian_opts = ['-i', '-I'];
$run_piuparts = 0;
# $piuparts_opts = ['--schroot', '%r-%a-sbuild', '--no-eatmydata'];
$run_autopkgtest = 0;
# $autopkgtest_root_args = '';
# $autopkgtest_opts = [ '--', 'schroot', '%r-%a-sbuild' ];
##############################################################################
# PERL MAGIC
##############################################################################
1;
|