Skip to content

Commit

Permalink
fix: exclude nyx builds
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Jun 1, 2022
1 parent 596646b commit 8f17265
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bugmon/bug.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def build_flags(self) -> BuildFlags:
valgrind = "--enable-valgrind" in self.comment_zero
no_opt = "--disable-optimize" in self.comment_zero
fuzzilli = "--enable-js-fuzzilli" in self.comment_zero
nyx = False # We don't support nyx builds
self._build_flags = BuildFlags(
asan,
tsan,
Expand All @@ -154,6 +155,7 @@ def build_flags(self) -> BuildFlags:
valgrind,
no_opt,
fuzzilli,
nyx,
)

return self._build_flags
Expand Down

0 comments on commit 8f17265

Please sign in to comment.