Skip to content
Latchkey

Build Aarch64 Linux Wheels workflow (pytorch/audio)

The Build Aarch64 Linux Wheels workflow from pytorch/audio, explained and optimized by Latchkey.

B

CI health: B - good

The optimized version below adds job timeouts, SHA-pinned actions.

Source: pytorch/audio.github/workflows/build_wheels_aarch64_linux.ymlLicense BSD-2-ClauseView source

What it does

This is the Build Aarch64 Linux Wheels workflow from the pytorch/audio repository, a real project running GitHub Actions. It is shown here with attribution under its BSD-2-Clause license.

Below, Latchkey shows a faster, safer version produced by its optimization engine.

The workflow

workflow (.yml)
name: Build Aarch64 Linux Wheels

on:
    pull_request:
    push:
      branches:
        - nightly
        - main
        - release/*
      tags:
          # NOTE: Binary build pipelines should only get triggered on release candidate builds
          # Release candidate tags look like: v1.11.0-rc1
          - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+
    workflow_dispatch:

concurrency:
    group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
    cancel-in-progress: true

permissions:
  id-token: write
  contents: read

jobs:
  generate-matrix:
    uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
    with:
      package-type: wheel
      os: linux-aarch64
      test-infra-repository: pytorch/test-infra
      test-infra-ref: main
      with-cuda: enable
  build:
    needs: generate-matrix
    strategy:
      fail-fast: false
      matrix:
        include:
          - repository: pytorch/audio
            smoke-test-script: test/smoke_test/smoke_test.py
            package-name: torchaudio
    name: ${{ matrix.repository }}
    uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
    with:
      repository: ${{ matrix.repository }}
      ref: ""
      test-infra-repository: pytorch/test-infra
      test-infra-ref: main
      build-matrix: ${{ needs.generate-matrix.outputs.matrix }}
      pre-script: ${{ matrix.pre-script }}
      post-script: ${{ matrix.post-script }}
      package-name: ${{ matrix.package-name }}
      smoke-test-script: ${{ matrix.smoke-test-script }}
      trigger-event: ${{ github.event_name }}
      architecture: aarch64
      setup-miniconda: false
    secrets:
      R2_ACCOUNT_ID: ${{ secrets.R2_ACCOUNT_ID }}
      R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
      R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}

The same workflow, on Latchkey

Removes redundant runs and caps runaway jobs. Added and changed lines are highlighted.

name: Build Aarch64 Linux Wheels on:    pull_request:    push:      branches:        - nightly        - main        - release/*      tags:          # NOTE: Binary build pipelines should only get triggered on release candidate builds          # Release candidate tags look like: v1.11.0-rc1          - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+    workflow_dispatch: concurrency:    group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}    cancel-in-progress: true permissions:  id-token: write  contents: read jobs:  generate-matrix:    timeout-minutes: 30    uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main    with:      package-type: wheel      os: linux-aarch64      test-infra-repository: pytorch/test-infra      test-infra-ref: main      with-cuda: enable  build:    timeout-minutes: 30    needs: generate-matrix    strategy:      fail-fast: false      matrix:        include:          - repository: pytorch/audio            smoke-test-script: test/smoke_test/smoke_test.py            package-name: torchaudio    name: ${{ matrix.repository }}    uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main    with:      repository: ${{ matrix.repository }}      ref: ""      test-infra-repository: pytorch/test-infra      test-infra-ref: main      build-matrix: ${{ needs.generate-matrix.outputs.matrix }}      pre-script: ${{ matrix.pre-script }}      post-script: ${{ matrix.post-script }}      package-name: ${{ matrix.package-name }}      smoke-test-script: ${{ matrix.smoke-test-script }}      trigger-event: ${{ github.event_name }}      architecture: aarch64      setup-miniconda: false    secrets:      R2_ACCOUNT_ID: ${{ secrets.R2_ACCOUNT_ID }}      R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}      R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} 

What changed

  • Add a job timeout so a hung step cannot burn hours of runner time.

1 third-party action is referenced by a movable tag. Pin it to the commit SHA (Latchkey resolves and applies this automatically) so a repointed tag cannot change what runs.

This workflow runs 2 jobs per trigger. On Latchkey the same minutes cost up to 58% less than GitHub-hosted, with zero queue time.

Actions used in this workflow

pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml pytorch/test-infra/.github/workflows/build_wheels_linux.yml

Frequently asked questions

What does the Build Aarch64 Linux Wheels workflow (pytorch/audio) workflow do?
This is the Build Aarch64 Linux Wheels workflow from the pytorch/audio repository, a real project running GitHub Actions. It is shown here with attribution under its BSD-2-Clause license.
What CI health grade does this workflow get?
This Automation and other workflow grades B. Paste your own workflow into the Latchkey grader to see its grade and the exact fixes.
How can I improve this Automation and other workflow?
Apply job timeouts, SHA-pinned actions. Latchkey applies these automatically on managed runners when you point runs-on at Latchkey.

References