Skip to content

Commit 6e42e93

Browse files
committed
fix(ci): skip unsupported Windows CUDA versions
1 parent bc6ff9f commit 6e42e93

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/build-wheels-cuda.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
'pyver' = @("3.9")
2727
'cuda' = @("12.1.1", "12.2.2", "12.3.2", "12.4.1", "12.5.1")
2828
'releasetag' = @("basic")
29+
'exclude' = @(
30+
@{ 'os' = 'windows-2022'; 'cuda' = '12.1.1' },
31+
@{ 'os' = 'windows-2022'; 'cuda' = '12.2.2' },
32+
@{ 'os' = 'windows-2022'; 'cuda' = '12.3.2' }
33+
)
2934
}
3035
3136
$matrixOut = ConvertTo-Json $matrix -Compress

0 commit comments

Comments
 (0)