Validate binaries #23
Workflow file for this run
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 | |
on: | |
workflow_call: | |
inputs: | |
channel: | |
description: "Channel to use (nightly, release)" | |
required: false | |
type: string | |
default: release | |
ref: | |
description: 'Reference to checkout, defaults to empty' | |
default: "" | |
required: false | |
type: string | |
workflow_dispatch: | |
inputs: | |
channel: | |
description: "Channel to use (nightly, release, test)" | |
required: true | |
type: choice | |
options: | |
- release | |
- nightly | |
- test | |
ref: | |
description: 'Reference to checkout, defaults to empty' | |
default: "" | |
required: false | |
type: string | |
jobs: | |
validate-binaries: | |
uses: pytorch/test-infra/.github/workflows/validate-domain-library.yml@main | |
with: | |
package_type: "wheel" | |
os: "linux" | |
channel: ${{ inputs.channel }} | |
repository: "pytorch/torchrec" | |
smoke_test: "source ./.github/scripts/validate_binaries.sh" | |
with_cuda: enable |