https://github.com/python/cpython/commit/5f91577cdd09bc604001ccfc164042ddbe486a81
commit: 5f91577cdd09bc604001ccfc164042ddbe486a81
branch: main
author: Seth Michael Larson <[email protected]>
committer: hugovk <[email protected]>
date: 2026-02-02T17:55:11+02:00
summary:

gh-144376: Only run 'address' fuzzer for python3-libraries (#144398)

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e7f7aa5172e082..046e678f8c1b4b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -655,11 +655,14 @@ jobs:
       matrix:
         sanitizer:
         - address
-        - undefined
-        - memory
         oss-fuzz-project-name:
         - cpython3
         - python3-libraries
+        include:
+        - sanitizer: undefined
+          oss-fuzz-project-name: cpython3
+        - sanitizer: memory
+          oss-fuzz-project-name: cpython3
         exclude:
         # Note that the 'no-exclude' sentinel below is to prevent
         # an empty string value from excluding all jobs and causing

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to