We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59eb6b7 commit 7f12e1cCopy full SHA for 7f12e1c
1 file changed
.github/workflows/buildcupy.yaml
@@ -37,9 +37,9 @@ jobs:
37
- name: Find CUDA installs
38
run: |
39
srun --account=yuxilab -n 1 -N 1 --gres=gpu:L40S:1 bash -c '
40
- find /usr/local -maxdepth 1 -name "cuda*" 2>/dev/null &&
41
- find /opt -maxdepth 2 -name "cuda*" 2>/dev/null &&
42
- find /cm -maxdepth 4 -name "libnvvm.so" 2>/dev/null
+ find /usr/local -maxdepth 1 -name "cuda*" 2>/dev/null || true
+ find /opt -maxdepth 2 -name "cuda*" 2>/dev/null || true
+ find / -maxdepth 5 -name "libnvvm.so" 2>/dev/null || true
43
'
44
- name: Test with pytest
45
0 commit comments