@@ -14,32 +14,24 @@ pub(crate) fn handle_command(
1414) -> anyhow:: Result < ( ) > {
1515 if args. ci {
1616 // Exclude crates that are not supported on CI
17- args. exclude
18- . extend ( vec ! [ "cubecl-cuda" . to_string( ) , "cubecl-hip" . to_string( ) ] ) ;
17+ args. exclude . extend ( vec ! [
18+ "t4a-cubecl-cuda" . to_string( ) ,
19+ "cubecl-hip" . to_string( ) ,
20+ ] ) ;
1921 }
2022 base_commands:: check:: handle_command ( args. try_into ( ) . unwrap ( ) , env, context) ?;
2123 // Specific additional commands to test specific features
22- // cubecl-wgpu with SPIR-V
2324 // cubecl-wgpu with exclusive-memory-only
2425 // cubecl-runtime without default features
25- // Disabled on MacOS see:
26- #[ cfg( not( target_os = "macos" ) ) ]
2726 helpers:: custom_crates_check (
28- vec ! [ "cubecl-wgpu" ] ,
29- vec ! [ "--features" , "spirv" ] ,
30- None ,
31- None ,
32- "std with SPIR-V compiler" ,
33- ) ?;
34- helpers:: custom_crates_check (
35- vec ! [ "cubecl-wgpu" ] ,
27+ vec ! [ "t4a-cubecl-wgpu" ] ,
3628 vec ! [ "--features" , "exclusive-memory-only" ] ,
3729 None ,
3830 None ,
3931 "std with exclusive_memory_only" ,
4032 ) ?;
4133 helpers:: custom_crates_check (
42- vec ! [ "cubecl-runtime" ] ,
34+ vec ! [ "t4a- cubecl-runtime" ] ,
4335 vec ! [ "--no-default-features" ] ,
4436 None ,
4537 None ,
0 commit comments