diff --git a/.github/actions/setup-binary-builds/action.yml b/.github/actions/setup-binary-builds/action.yml index 4a76b405c5..2f9b32d44f 100644 --- a/.github/actions/setup-binary-builds/action.yml +++ b/.github/actions/setup-binary-builds/action.yml @@ -144,7 +144,7 @@ runs: # For conda package host python version is irrelevant export PYTHON_VERSION=3.13 export CONDA_EXTRA_PARAM=" python-freethreading -c conda-forge" - # Pin conda-solver for 3.13t build + # Pin conda and conda-libmamba-solver for 3.13t build conda install conda==24.7.1 conda-libmamba-solver=24.1.0 fi @@ -158,6 +158,5 @@ runs: wheel=0.37 \ ${CONDA_EXTRA_PARAM} - conda run -p ${CONDA_ENV} conda install -vv libwebp echo "CONDA_ENV=${CONDA_ENV}" >> "${GITHUB_ENV}" echo "CONDA_RUN=conda run -p ${CONDA_ENV}" >> "${GITHUB_ENV}" diff --git a/.github/workflows/test_build_wheels_linux_with_cuda.yml b/.github/workflows/test_build_wheels_linux_with_cuda.yml index 0ed5325645..750ec0e551 100644 --- a/.github/workflows/test_build_wheels_linux_with_cuda.yml +++ b/.github/workflows/test_build_wheels_linux_with_cuda.yml @@ -30,9 +30,9 @@ jobs: fail-fast: false matrix: include: - #- repository: pytorch/audio - # smoke-test-script: test/smoke_test/smoke_test.py - # package-name: torchaudio + - repository: pytorch/audio + smoke-test-script: test/smoke_test/smoke_test.py + package-name: torchaudio - repository: pytorch/vision pre-script: packaging/pre_build_script.sh post-script: packaging/post_build_script.sh @@ -47,7 +47,7 @@ jobs: name: ${{ matrix.repository }} with: repository: ${{ matrix.repository }} - ref: test_python313t + ref: nightly test-infra-repository: ${{ github.repository }} test-infra-ref: ${{ github.ref }} build-matrix: ${{ needs.generate-matrix.outputs.matrix }} diff --git a/.github/workflows/test_build_wheels_windows_with_cuda.yml b/.github/workflows/test_build_wheels_windows_with_cuda.yml index 6b38d429e0..9520c45cc6 100644 --- a/.github/workflows/test_build_wheels_windows_with_cuda.yml +++ b/.github/workflows/test_build_wheels_windows_with_cuda.yml @@ -28,11 +28,11 @@ jobs: fail-fast: false matrix: include: - #- repository: pytorch/audio - # env-script: packaging/vc_env_helper.bat - # wheel-build-params: "--plat-name win_amd64" - # smoke-test-script: test/smoke_test/smoke_test.py - # package-name: torchaudio + - repository: pytorch/audio + env-script: packaging/vc_env_helper.bat + wheel-build-params: "--plat-name win_amd64" + smoke-test-script: test/smoke_test/smoke_test.py + package-name: torchaudio - repository: pytorch/vision pre-script: packaging/pre_build_script.sh env-script: packaging/windows/internal/vc_env_helper.bat @@ -45,7 +45,7 @@ jobs: name: ${{ matrix.repository }} with: repository: ${{ matrix.repository }} - ref: test_python313t + ref: nightly test-infra-repository: ${{ github.repository }} test-infra-ref: ${{ github.ref }} build-matrix: ${{ needs.generate-matrix.outputs.matrix }}