-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skipping CCd users without GAIA accounts for buganizer issues (#4406)
### Motivation oss_fuzz_build_status and oss_fuzz_apply_ccs are broken due to buganizer rejecting emails without associated accounts. This serves as a workaround so at least some notifications can suceeed. (google/oss-fuzz#12536) ### Why this works Buganizer throws 400 errors listing out all rejected emails in the exception, so we can just parse the non gaia emails from that and complete the execution by ignoring those. ### Testing strategy Ran both cronjobs locally with the proposed new code, and verified they ran to completion.
- Loading branch information
1 parent
737b835
commit f918c36
Showing
3 changed files
with
43 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
src/clusterfuzz/_internal/tests/core/bot/fuzzers/syzkaller/temp/config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"target": "linux/arm64", "reproduce": false, "workdir": "/home/vitorguidi/projects/clusterfuzz/src/clusterfuzz/_internal/tests/core/bot/fuzzers/syzkaller/input/syzkaller", "http": "localhost:0", "syzkaller": "/home/vitorguidi/projects/clusterfuzz/src/clusterfuzz/_internal/tests/core/bot/fuzzers/syzkaller/build/syzkaller", "suppressions": ["do_rt_sigqueueinfo", "do_rt_tgsigqueueinfo"], "vm": {"devices": ["172.18.0.2:6520"]}, "kernel_obj": "/home/vitorguidi/projects/clusterfuzz/src/clusterfuzz/_internal/tests/core/bot/fuzzers/syzkaller/build", "sandbox": "android", "ignores": ["WARNING:", "INFO:"], "type": "adb", "procs": 1, "cover": true} |