Skip to content

Commit c5bd7c1

Browse files
committed
fix
1 parent 014972a commit c5bd7c1

2 files changed

Lines changed: 30 additions & 2 deletions

File tree

.github/workflows/test_build_wheels_linux_without_cuda.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with-cuda: disable
2727
with-rocm: disable
2828
build-python-only: enable
29-
test:
29+
test-torchtune:
3030
needs: generate-matrix
3131
strategy:
3232
fail-fast: false
@@ -48,3 +48,27 @@ jobs:
4848
pip-install-torch-extra-args:
4949
torchvision
5050
torchao
51+
test-torchvision-extra-decoders:
52+
needs: generate-matrix
53+
strategy:
54+
fail-fast: false
55+
matrix:
56+
include:
57+
- repository: pytorch-labs/torchvision-extra-decoders
58+
pre-script: packaging/pre_build_script.sh
59+
post-script: packaging/post_build_script.sh
60+
smoke-test-script: packaging/fake_smoke_test.py
61+
package-name: torchvision_extra_decoders
62+
uses: ./.github/workflows/build_wheels_linux.yml
63+
name: ${{ matrix.repository }}
64+
with:
65+
repository: ${{ matrix.repository }}
66+
ref: ""
67+
test-infra-repository: ${{ github.repository }}
68+
test-infra-ref: ${{ github.ref }}
69+
build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
70+
package-name: ${{ matrix.package-name }}
71+
pre-script: ${{ matrix.pre-script }}
72+
post-script: ${{ matrix.post-script }}
73+
smoke-test-script: ${{ matrix.smoke-test-script }}
74+
build-platform: python-build-package

tools/scripts/generate_binary_build_matrix.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ def generate_wheels_matrix(
455455
arches += [XPU]
456456

457457
if limit_pr_builds:
458-
python_versions = [python_versions[-1]]
458+
python_versions = [python_versions[-2]]
459459

460460
global WHEEL_CONTAINER_IMAGES
461461

@@ -471,6 +471,10 @@ def generate_wheels_matrix(
471471
if (gpu_arch_type == "cpu-s390x") and python_version == "3.13t":
472472
continue
473473

474+
# Python 3.14 and 3.14t not yet supported on Windows
475+
if os == WINDOWS and python_version.startswith("3.14"):
476+
continue
477+
474478
desired_cuda = translate_desired_cuda(gpu_arch_type, gpu_arch_version)
475479
entry = {
476480
"python_version": python_version,

0 commit comments

Comments
 (0)