Skip to content

Commit 483ca1f

Browse files
author
CI
committed
ci: disable CUDA build jobs (no GPU on GitHub-hosted runners)
1 parent 1787613 commit 483ca1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
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

0 commit comments

Comments
 (0)