-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: Adjust fuzzing config #559
Conversation
Codecov Report
@@ Coverage Diff @@
## master #559 +/- ##
=======================================
Coverage 98.64% 98.64%
=======================================
Files 59 59
Lines 8948 8948
=======================================
Hits 8827 8827
Misses 121 121 |
1fcc7b8
to
7b1a20a
Compare
@@ -454,22 +454,37 @@ jobs: | |||
- build: | |||
build_type: RelWithDebInfo | |||
cmake_options: -DFIZZY_FUZZING=ON -DENABLE_ASSERTIONS=ON | |||
target: fizzy-fuzz-parser |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this doing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It only builds fizzy-fuzz-parser
instead of building everything, so the build takes only ~15 seconds. We don't run tests in this job (although we could, they would be similar to sanitizers-clang job).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It means build target, e.g. make fizzy-fuzz-parser
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes.
No description provided.