Skip to content

Commit d15bd73

Browse files
raphaelstyclaude
andcommitted
Fix CI: use platform-specific features instead of --all-features
The accelerate feature is macOS-only, so --all-features fails on Linux CI. Use explicit features "npy,openblas" for lint and docs jobs on Ubuntu. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5e41825 commit d15bd73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ jobs:
108108
- name: Clippy (default features)
109109
run: cargo clippy --all-targets -- -D warnings
110110

111-
- name: Clippy (all features)
112-
run: cargo clippy --all-targets --all-features -- -D warnings
111+
- name: Clippy (with BLAS)
112+
run: cargo clippy --all-targets --features "npy,openblas" -- -D warnings
113113

114114
docs:
115115
name: Documentation
@@ -124,7 +124,7 @@ jobs:
124124
run: sudo apt-get update && sudo apt-get install -y libopenblas-dev
125125

126126
- name: Build documentation
127-
run: cargo doc --no-deps --all-features
127+
run: cargo doc --no-deps --features "npy,openblas"
128128
env:
129129
RUSTDOCFLAGS: -D warnings
130130

0 commit comments

Comments
 (0)