Skip to content

Commit 30072de

Browse files
Alex Holmbergclaude
authored andcommitted
fix(ci): override target-cpu=native that breaks macOS CI
The .cargo/config.toml has target-cpu=native which causes ring crate to fail on GitHub runners due to CPU feature detection mismatches. Set RUSTFLAGS="" in CI to override. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 7221fe9 commit 30072de

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
env:
1010
CARGO_TERM_COLOR: always
1111
RUST_BACKTRACE: 1
12+
# Override target-cpu=native from .cargo/config.toml (breaks CI runners)
13+
RUSTFLAGS: ""
1214

1315
jobs:
1416
build:

0 commit comments

Comments
 (0)