Skip to content

Commit fe3a4a0

Browse files
Fix Docker run: remove GPU requirement for CI
- Remove --gpus all flag since GitHub Actions runners don't have GPU access - Container builds successfully, just needs to run without GPU for basic testing - This allows cross-platform test validation to proceed
1 parent 10f3ba0 commit fe3a4a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/vision-cross-platform-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build and test Linux CUDA
2626
run: |
2727
docker build -f packaging/docker/Dockerfile.vision-test-linux-cuda -t vision-test-linux-cuda .
28-
docker run --gpus all -v $(pwd):/workspace vision-test-linux-cuda
28+
docker run -v $(pwd):/workspace vision-test-linux-cuda
2929
3030
- name: Upload test results
3131
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)