https://github.com/python/cpython/commit/f68d634dfe1e7d8dff69eeadf5adc81c5e91e7e4
commit: f68d634dfe1e7d8dff69eeadf5adc81c5e91e7e4
branch: 3.14
author: Stan Ulbrych <[email protected]>
committer: hugovk <[email protected]>
date: 2026-02-02T17:50:33+01:00
summary:

[3.14] gh-144376: Only run 'address' fuzzer for python3-libraries (GH-144398) 
(#144399)

(cherry picked from commit 5f91577cdd09bc604001ccfc164042ddbe486a81)

Co-authored-by: Seth Michael Larson <[email protected]>

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4eec45100a58be..428e9d1a658395 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -631,11 +631,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