Skip to content

Conversation

@ziadhany
Copy link
Collaborator

@ziadhany ziadhany commented Aug 26, 2025

@ziadhany
Copy link
Collaborator Author

ziadhany commented Dec 17, 2025

LinuxKernelPipeline Improver Logs

Importing data using linux_kernel_cves_fix_commits
INFO 2026-01-22 20:19:18.555702 UTC Pipeline [LinuxKernelPipeline] starting
INFO 2026-01-22 20:19:18.555847 UTC Step [clone] starting
INFO 2026-01-22 20:19:18.555901 UTC Cloning `git+https://github.com/nluedtke/linux_kernel_cves`
INFO 2026-01-22 20:20:15.586132 UTC Step [clone] completed in 57 seconds
INFO 2026-01-22 20:20:15.586237 UTC Step [extract_kernel_cve_fix_commits] starting
INFO 2026-01-22 20:20:15.586283 UTC Processing linux kernel fix commits.
INFO 2026-01-22 20:20:15.748628 UTC Step [extract_kernel_cve_fix_commits] completed in 0 seconds
INFO 2026-01-22 20:20:15.748756 UTC Step [collect_and_store_advisories] starting
INFO 2026-01-22 20:20:15.751358 UTC Collecting 1 advisories
INFO 2026-01-22 20:20:23.488810 UTC Successfully collected 930 advisories
INFO 2026-01-22 20:20:23.488932 UTC Step [collect_and_store_advisories] completed in 8 seconds
INFO 2026-01-22 20:20:23.488986 UTC Step [clean_downloads] starting
INFO 2026-01-22 20:20:23.489035 UTC Step [clean_downloads] completed in 0 seconds
INFO 2026-01-22 20:20:23.489083 UTC Pipeline completed in 65 seconds (1.1 minutes)
from vulnerabilities.models import AdvisoryV2
from django.db.models import Count
duplicates = (
    AdvisoryV2.objects
    .values('avid')
    .annotate(count=Count('id'))
    .filter(count__gt=1)
)
len(duplicates)
Out[2]: 0
AdvisoryV2.objects.count()
Out[3]: 886

Add a test for the Linux kernel

Signed-off-by: ziad hany <ziadhany2016@gmail.com>
@ziadhany
Copy link
Collaborator Author

This pipeline should run once, I think.

… advisory_id

Signed-off-by: ziad hany <ziadhany2016@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant