Fix Python 3.15 validation on Linux, Windows and macOS #171
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Build Linux Aarch64 Wheels with CUDA | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/actions/setup-binary-builds/action.yml | |
| - .github/workflows/test_build_wheels_linux.yml | |
| - .github/workflows/build_wheels_linux.yml | |
| - .github/workflows/generate_binary_build_matrix.yml | |
| - .github/workflows/test_build_wheels_linux_aarch64_with_cuda.yml | |
| - tools/scripts/generate_binary_build_matrix.py | |
| workflow_dispatch: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| generate-matrix: | |
| uses: ./.github/workflows/generate_binary_build_matrix.yml | |
| with: | |
| package-type: wheel | |
| os: linux-aarch64 | |
| test-infra-repository: ${{ github.repository }} | |
| test-infra-ref: ${{ github.ref }} | |
| with-cuda: enable | |
| test: | |
| needs: generate-matrix | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - repository: pytorch/vision | |
| pre-script: packaging/pre_build_script.sh | |
| post-script: packaging/post_build_script.sh | |
| smoke-test-script: test/smoke_test.py | |
| package-name: torchvision | |
| - repository: pytorch/audio | |
| smoke-test-script: test/smoke_test/smoke_test.py | |
| package-name: torchaudio | |
| uses: ./.github/workflows/build_wheels_linux.yml | |
| name: ${{ matrix.repository }} | |
| with: | |
| repository: ${{ matrix.repository }} | |
| ref: nightly | |
| test-infra-repository: ${{ github.repository }} | |
| test-infra-ref: ${{ github.ref }} | |
| build-matrix: ${{ needs.generate-matrix.outputs.matrix }} | |
| pre-script: ${{ matrix.pre-script }} | |
| post-script: ${{ matrix.post-script }} | |
| smoke-test-script: ${{ matrix.smoke-test-script }} | |
| package-name: ${{ matrix.package-name }} | |
| trigger-event: "${{ github.event_name }}" | |
| architecture: aarch64 | |
| setup-miniconda: false |