File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99jobs :
1010 cache-deps :
1111 runs-on : windows-2025
12+ strategy :
13+ matrix :
14+ include :
15+ - cuda-version : ' 12'
16+ cache-key : ' nvidia-deps-cuda-12.4.0-cudnn-8.9.7.29'
17+ - cuda-version : ' 13'
18+ cache-key : ' nvidia-deps-cuda-13.1.1-cudnn-9.18.1.3'
1219 steps :
1320 - name : Checkout
1421 uses : actions/checkout@v4
1522 with :
1623 submodules : false
1724 fetch-depth : 1
18- - name : Cache NVIDIA dependencies
25+ - name : Cache NVIDIA dependencies (CUDA ${{ matrix.cuda-version }})
1926 id : cache-nvidia-deps
2027 uses : actions/cache@v3
2128 with :
2229 path : .deps/Nvidia
23- key : nvidia-deps-cuda-13.1.1-cudnn-9.18.1.3
30+ key : ${{ matrix.cache-key }}
2431 - name : Clone NVIDIA dependencies
2532 if : steps.cache-nvidia-deps.outputs.cache-hit != 'true'
2633 env :
3340 shell : bash
3441 - name : Cache populated
3542 run : |
36- echo "NVIDIA dependencies cached successfully!"
43+ echo "NVIDIA dependencies for CUDA ${{ matrix.cuda-version }} cached successfully!"
3744 ls -la .deps/Nvidia/ || echo "Cache was already populated"
3845 shell : bash
You can’t perform that action at this time.
0 commit comments