diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:42:30 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:42:30 +0000 |
commit | 75808db17caf8b960b351e3408e74142f4c85aac (patch) | |
tree | 7989e9c09a4240248bf4658a22208a0a52d991c4 /reporting/config.yaml | |
parent | Initial commit. (diff) | |
download | lintian-75808db17caf8b960b351e3408e74142f4c85aac.tar.xz lintian-75808db17caf8b960b351e3408e74142f4c85aac.zip |
Adding upstream version 2.117.0.upstream/2.117.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'reporting/config.yaml')
-rw-r--r-- | reporting/config.yaml | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/reporting/config.yaml b/reporting/config.yaml new file mode 100644 index 0000000..e3f0ecd --- /dev/null +++ b/reporting/config.yaml @@ -0,0 +1,72 @@ +## Used to define some reused variables +defaults: + architectures: &ARCH + - i386 + - amd64 + components: &COMP + - main + - contrib + - non-free + +## List of archives to process +archives: + ## A name given to the archive + debian: + ## Name of the tracefile to use to determine how up to date + ## the archive is. + tracefile: ftp-master.debian.org + ## Where the archive is placed on the file system + base-dir: /srv/mirrors/debian + ## Architectures to process + architectures: *ARCH + ## Which components to process + components: *COMP + ## Which suites/distributions to process + distributions: + - unstable + - experimental + debian-debug: + tracefile: ftp-master.debian.org + base-dir: /srv/mirrors/debian-debug + architectures: *ARCH + components: *COMP + distributions: + - unstable-debug + - experimental-debug + +storage: +## Path to the log files + log-dir: /srv/lintian.debian.org/logs +## Path to a directory to hold temporary data used by lintian. +## Used as TMPDIR for lintian and will also hold temporary labs +## - Can be /var/tmp or /tmp as long as they have space enough +## - Can be cleaned automatically. Either on boot or via a +## "delete anything older than X days"-mechanism + scratch-space: /srv/lintian.debian.org/scratch +## Path to a directory to hold cached data like which packages +## have been processed. +## - Can be in /var/cache +## - Can be deleted to reset / restart processing from scratch + state-cache: /srv/lintian.debian.org/harness-state +## Where to store latest completed report / static website + reports-dir: /srv/lintian.debian.org/reports-directory/www +## Directory to use for compiling new reports +## FIXME: This should just be a tmpdir + reports-work-dir: /srv/lintian.debian.org/reports-directory/www.tmp +## Where to store collected data / historical data (used for +## generating graphs etc.) + historical-data-dir: /srv/lintian.debian.org/history + +lintian: +## Extra options to pass to lintian (not all options can be +## passed via this. E.g. --cfg is ignored). +# extra-options: ['--jobs', '2'] + +## All of these variables will be available for templates to consume +## via "$config_vars{VAR}" +template-variables: + LINTIAN_SOURCE: https://salsa.debian.org/git/lintian/lintian.git + +## Source packages to not process +blacklist: +- gcc-8-cross-ports # #890873 |