Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ jobs:
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
# The repo's .cargo/config.toml sets `target-cpu=native` for local M1 dev.
# On GitHub's heterogeneous shared-runner fleet that flag makes rustc emit
# instructions the underlying (often live-migrated) silicon can't execute,
# so the verification build dies with SIGILL. Every other workflow
# (ci/release/bench) overrides it with a portable baseline; publish.yml was
# the one that didn't. Match them so the publish gate is reproducible.
RUSTFLAGS: "-C target-cpu=x86-64-v2"

steps:
- name: Checkout
Expand Down
Loading