summaryrefslogtreecommitdiff
path: root/.sbuildrc
blob: 790b04a68118e009c1bdb4d85f6422ead95f04bf (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
28
29
# -*- Perl -*-

$pgp_options = ['-us', '-uc'];

# `dht make-all` doesn't like this
#$build_source = 1;
$build_arch_all = 1;
$distribution = 'unstable';

$run_lintian = 1;
$lintian_opts = [
    '--allow-root',
    '--color=never',            # make the .build file more readable
    '--fail-on-warnings'
    ];

$run_piuparts = 1;
$piuparts_opts = [
    '--schroot',
    '%r-%a-piuparts',
    '--fail-if-inadequate',
    # '--fail-on-broken-symlinks', # too many false positives
    ];

$run_autopkgtest = 1;
$autopkgtest_root_args = "";
$autopkgtest_opts = ["--", "schroot", "%r-%a-sbuild"];

1;