Skip to content

Commit c703416

Browse files
Fix MLX test: release only needs macOS ARM64 (Intel is legacy)
1 parent f49b7c5 commit c703416

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

tests/regression/issue_068_mlx_support.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,9 +314,8 @@ fn test_mlx_regression_prevention() {
314314
.expect("Should be able to read release workflow");
315315

316316
assert!(
317-
workflow_file.contains("aarch64-apple-darwin")
318-
&& workflow_file.contains("x86_64-apple-darwin"),
319-
"Release workflow should include macOS targets (both Intel and ARM64)"
317+
workflow_file.contains("aarch64-apple-darwin"),
318+
"Release workflow should include macOS ARM64 target"
320319
);
321320

322321
// 3. MLX feature still compiles (legacy path, not default)

0 commit comments

Comments
 (0)