forked from pytorch/torchrec
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (39 loc) · 1.02 KB
/
validate-binaries.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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, pypi)"
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