Skip to content

Commit

Permalink
Merge pull request cupy#8992 from kmaehashi/no-full-test-in-slow-win-…
Browse files Browse the repository at this point in the history
…cuda

CI: Do not run full CI on CUDA 12.0/12.1/12.2 + Windows
  • Loading branch information
kmaehashi authored and chainer-ci committed Feb 28, 2025
1 parent fca48bc commit 8fcc10f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .pfnci/windows/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@ function Main {
if (-Not $is_pull_request) {
$Env:CUPY_TEST_FULL_COMBINATION = "1"
}
# Skip full test for these CUDA versions as compilation seems so slow
if (($cuda -eq "12.0") -or ($cuda -eq "12.1") -or ($cuda -eq "12.2")) {
$Env:CUPY_TEST_FULL_COMBINATION = "0"
}

# Install dependency for cuDNN 8.3+
echo ">> Installing zlib"
Expand Down

0 comments on commit 8fcc10f

Please sign in to comment.