Skip to content

Collect existing fix commits for Linux Kernel#1989

Merged
ziadhany merged 4 commits into
aboutcode-org:mainfrom
ziadhany:linux-kernel
May 15, 2026
Merged

Collect existing fix commits for Linux Kernel#1989
ziadhany merged 4 commits into
aboutcode-org:mainfrom
ziadhany:linux-kernel

Conversation

@ziadhany
Copy link
Copy Markdown
Collaborator

@ziadhany ziadhany commented Aug 26, 2025

@ziadhany
Copy link
Copy Markdown
Collaborator Author

ziadhany commented Dec 17, 2025

LinuxKernelPipeline Improver Logs

INFO 2026-05-14 22:38:33.868790 UTC Pipeline [LinuxKernelPipeline] starting
INFO 2026-05-14 22:38:33.868932 UTC Step [clone] starting
INFO 2026-05-14 22:38:33.869000 UTC Cloning `git+https://github.com/nluedtke/linux_kernel_cves`
Importing data using linux_kernel_cves_fix_commits
INFO 2026-05-14 22:38:38.341607 UTC Step [clone] completed in 4 seconds
INFO 2026-05-14 22:38:38.341720 UTC Step [extract_kernel_cve_fix_commits] starting
INFO 2026-05-14 22:38:38.341772 UTC Processing linux kernel fix commits.
INFO 2026-05-14 22:38:38.503275 UTC Step [extract_kernel_cve_fix_commits] completed in 0 seconds
INFO 2026-05-14 22:38:38.503363 UTC Step [collect_and_store_advisories] starting
INFO 2026-05-14 22:38:38.505147 UTC Collecting 1 advisories
INFO 2026-05-14 22:38:39.492410 UTC Successfully collected 930 advisories
INFO 2026-05-14 22:38:39.492535 UTC Step [collect_and_store_advisories] completed in 1 seconds
INFO 2026-05-14 22:38:39.492594 UTC Step [clean_downloads] starting
INFO 2026-05-14 22:38:39.492648 UTC Removing cloned repository
INFO 2026-05-14 22:38:39.501417 UTC Step [clean_downloads] completed in 0 seconds
INFO 2026-05-14 22:38:39.501546 UTC Pipeline completed in 6 seconds

Process finished with exit code 0
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

@ziadhany
Copy link
Copy Markdown
Collaborator Author

This pipeline should run once, I think.

Copy link
Copy Markdown
Contributor

@TG1999 TG1999 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

ziadhany added 3 commits May 15, 2026 01:08
Add a test for the Linux kernel

Signed-off-by: ziad hany <ziadhany2016@gmail.com>
… advisory_id

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

LGTM!

@TG1999 Please approve, I don’t have permission to merge.

@ziadhany ziadhany requested a review from TG1999 May 15, 2026 01:43
Copy link
Copy Markdown
Contributor

@TG1999 TG1999 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@ziadhany ziadhany merged commit 8b90a51 into aboutcode-org:main May 15, 2026
5 checks passed
@ziadhany ziadhany deleted the linux-kernel branch May 15, 2026 10:46
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.

2 participants