Add aarch64 to validation framework (#1489) #157
This file contains 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: Validate binaries | ||
# A reusable workflow that triggers a set of jobs that perform a smoke test / validation of pytorch binaries. | ||
# Optionally restricts validation to the specified OS and channel. | ||
# For the details about parameter values, see: | ||
# pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main | ||
# For an example of the `workflow_call` usage see: | ||
# https://github.com/pytorch/builder/pull/1144 | ||
on: | ||
workflow_call: | ||
inputs: | ||
os: | ||
description: "Operating system to generate for (linux, windows, macos, macos-arm64)" | ||
required: true | ||
type: string | ||
channel: | ||
description: "Channel to use (nightly, test, release, all)" | ||
required: true | ||
type: string | ||
ref: | ||
description: 'Reference to checkout, defaults to empty' | ||
default: "" | ||
required: false | ||
type: string | ||
workflow_dispatch: | ||
inputs: | ||
os: | ||
description: "Operating system to generate for (linux, windows, macos, macos-arm64)" | ||
required: true | ||
type: choice | ||
default: all | ||
options: | ||
- windows | ||
- linux | ||
- linux-aarch64 | ||
- macos | ||
- all | ||
channel: | ||
description: "Channel to use (nightly, test, release, all)" | ||
required: true | ||
type: choice | ||
default: all | ||
options: | ||
- release | ||
- nightly | ||
- test | ||
- all | ||
ref: | ||
description: 'Reference to checkout, defaults to empty' | ||
default: "" | ||
required: false | ||
type: string | ||
jobs: | ||
win: | ||
if: inputs.os == 'windows' || inputs.os == 'all' | ||
uses: ./.github/workflows/validate-windows-binaries.yml | ||
with: | ||
channel: ${{ inputs.channel }} | ||
ref: ${{ inputs.ref || github.ref }} | ||
linux: | ||
if: inputs.os == 'linux' || inputs.os == 'all' | ||
uses: ./.github/workflows/validate-linux-binaries.yml | ||
with: | ||
channel: ${{ inputs.channel }} | ||
ref: ${{ inputs.ref || github.ref }} | ||
linux: | ||
if: inputs.os == 'linux-aarch64' | ||
uses: ./.github/workflows/validate-aarch64-linux-binaries.yml | ||
with: | ||
channel: ${{ inputs.channel }} | ||
ref: ${{ inputs.ref || github.ref }} | ||
mac: | ||
if: inputs.os == 'macos' || inputs.os == 'all' | ||
uses: ./.github/workflows/validate-macos-binaries.yml | ||
with: | ||
channel: ${{ inputs.channel }} | ||
ref: ${{ inputs.ref || github.ref }} | ||
mac-arm64: | ||
if: inputs.os == 'macos' || inputs.os == 'all' | ||
uses: ./.github/workflows/validate-macos-arm64-binaries.yml | ||
with: | ||
channel: ${{ inputs.channel }} | ||
ref: ${{ inputs.ref || github.ref }} |