aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/kcidb
Commit message (Collapse)AuthorAgeFilesLines
* tools/syz-kcidb: add -input and -output flags for testingDenys Fedoryshchenko2025-10-061-0/+18
| | | | | | | | | | | | Add -input and -output flags to syz-kcidb to allow for faster and easier testing of KCIDB submissions. With these flags, it's possible to use a local JSON file as input for a bug report and to save the resulting KCIDB submission locally. This removes the need for communication with the dashboard and KCIDB, which simplifies testing and development. Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
* kcidb: convert from Google PubSub to plain REST interfaceDenys Fedoryshchenko2025-10-061-22/+40
| | | | | | | | KCIDB removing Google PubSub and start to accept REST submissions. This will require new configuration options, such as REST URL and token. Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
* pkg/kcidb: upgrade submission schema to v5.3Denys Fedoryshchenko2025-10-062-122/+248
| | | | | | | Upgrading KCIDB schema, as old versions going to be deprecated soon. Ref: https://github.com/kernelci/kcidb-io/tree/main/kcidb_io/schema Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
* all: apply linter auto fixesTaras Madan2025-07-171-1/+1
| | | | ./tools/syz-env bin/golangci-lint run ./... --fix
* all: use special placeholder for errorsTaras Madan2023-07-241-2/+2
|
* pkg/kcidb: assorted improvements for the schemaDmitry Vyukov2020-10-012-5/+44
| | | | | | | | | | | Based on @spbnick comments: https://groups.google.com/g/syzkaller/c/Gd-hTPH4Two/m/6viE0QLgCQAJ Normalize git.kernel.org repo addresses. Send dashboard link in misc rather than in output files. Don't omit waived. Also check sent messages with kcidb-validate if it's in PATH.
* pkg/kcidb: add packageDmitry Vyukov2020-09-302-0/+418
Package for working with Kcidb. Update #2144