summaryrefslogtreecommitdiff
path: root/.sbuildrc
blob: d3eee9b6de930c8e688402068f386ed9fc79a991 (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
30
31
32
33
34
# -*- Perl -*-

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

# sbuild is not for building source packages
$build_source = 0;
# ... but arch:all please!
$build_arch_all = 1;
$distribution = 'unstable';

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

# don't run by default: see sbuild-preupload function in ~/.bashrc
$run_piuparts = 0;
$piuparts_opts = [
    '--no-eatmydata',
    '--schroot',
    '%r-%a-sbuild',
    # '--fail-if-inadequate',
    # '--fail-on-broken-symlinks', # too many false positives
    '--log-level=info',
    ];

# don't run by default: see sbuild-preupload function in ~/.bashrc
$run_autopkgtest = 0;
$autopkgtest_root_args = "";
$autopkgtest_opts = ["--", "schroot", "%r-%a-sbuild"];

1;