summaryrefslogtreecommitdiff
path: root/.sbuildrc
blob: 3670f0531569f4ed7cb7566816eed5c75941cd2e (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'];

# `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'
    ];

# TODO detect or specify in a var at top of file the architecture in the following
$run_piuparts = 1;
$piuparts_opts = [
    '--schroot',
    'unstable-i386-piuparts',
    '--fail-if-inadequate',
    # '--fail-on-broken-symlinks', # too many false positives
    ];

$external_commands = {
  'post-build-commands' => [
    [
      'autopkgtest-sbuild', '%d', '%c', 'unstable-%a-sbuild'
    ],
  ],
};

1;