File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 4444 # Build and test with CUDA
4545 build-cuda :
4646 name : Build & Test (CUDA ${{ matrix.cuda }})
47+ if : false # Disabled: requires GPU runner not available on GitHub-hosted runners
4748 runs-on : ubuntu-latest
4849 container :
4950 image : nvidia/cuda:${{ matrix.cuda }}-devel-ubuntu22.04
@@ -145,14 +146,13 @@ jobs:
145146 # Summary job
146147 ci-success :
147148 name : CI Success
148- needs : [format-check, build-cuda ]
149+ needs : [format-check]
149150 runs-on : ubuntu-latest
150151 if : always()
151152 steps :
152153 - name : Check all jobs
153154 run : |
154- if [[ "${{ needs.format-check.result }}" == "failure" ]] || \
155- [[ "${{ needs.build-cuda.result }}" == "failure" ]]; then
155+ if [[ "${{ needs.format-check.result }}" == "failure" ]]; then
156156 echo "One or more jobs failed"
157157 exit 1
158158 fi
You can’t perform that action at this time.
0 commit comments