Skip to content

Commit 2452fb0

Browse files
committed
no 13.0
1 parent 8706ff3 commit 2452fb0

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/build_linux_wheels.yaml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,21 @@ jobs:
2424
with-rocm: disable
2525
with-cpu: disable
2626
python-versions: '["3.10", "3.11", "3.12"]'
27-
build:
27+
filter-matrix:
28+
runs-on: ubuntu-latest
2829
needs: generate-matrix
30+
outputs:
31+
matrix: ${{ steps.filter.outputs.matrix }}
32+
steps:
33+
- name: Filter out CUDA 13 # vLLM v0.10.0 does not built with CUDA 13
34+
id: filter
35+
run: |
36+
echo '${{ needs.generate-matrix.outputs.matrix }}' \
37+
| jq 'del(.include[] | select(.gpu_arch_version == "13.0"))' \
38+
> matrix.json
39+
echo "matrix=$(cat matrix.json)" >> $GITHUB_OUTPUT
40+
build:
41+
needs: filter-matrix
2942
name: ${{ matrix.repository }}
3043
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
3144
strategy:

0 commit comments

Comments
 (0)