Skip to content

Commit cb79160

Browse files
committed
[ci] Enabled metal tests on macOS
1 parent 31471e2 commit cb79160

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

xtask/src/commands/test.rs

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ pub(crate) fn handle_command(
5151
]);
5252
};
5353

54+
let mut features = args.features.unwrap_or_default();
55+
#[cfg(target_os = "macos")]
56+
features.push("metal".to_string());
57+
args.features = Some(features);
58+
5459
// test workspace
5560
base_commands::test::handle_command(args.try_into().unwrap())?;
5661

0 commit comments

Comments
 (0)