Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
# suite each run and cached so coverage accretes across runs.
fuzz-smoke:
runs-on: ubuntu-latest
env:
# Hosted runner `-march=native` can expose transient CPU features that
# clang promotes to -Werror diagnostics; fuzzing does not need native ISA.
RAY_MARCH: x86-64
steps:
- uses: actions/checkout@v4
- name: Cache fuzz corpus
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ jobs:

fuzz-long:
runs-on: ubuntu-latest
env:
# Keep clang fuzz builds off hosted-runner native ISA quirks.
RAY_MARCH: x86-64
strategy:
fail-fast: false
matrix:
Expand Down
Loading