Skip to content

Commit 2291b93

Browse files
authored
Ad ability to call validate domain library manually (#1235)
1 parent 34d0cad commit 2291b93

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/validate-domain-library.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,38 @@ name: Validate domain libary
55
# For the details about parameter values, see:
66
# pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main
77
on:
8+
workflow_dispatch:
9+
inputs:
10+
channel:
11+
description: "Channel to use (nightly, test, release, all)"
12+
required: true
13+
type: choice
14+
options:
15+
- release
16+
- nightly
17+
- test
18+
- all
19+
package-type:
20+
description: "Package type (conda, wheel, all)"
21+
required: true
22+
type: choice
23+
options:
24+
- conda
25+
- wheel
26+
- all
27+
repository:
28+
description: "Path to repository to checkout"
29+
required: true
30+
type: string
31+
smoke_test:
32+
description: "Path to a smoke test script"
33+
required: true
34+
type: string
35+
ref:
36+
description: 'Reference to checkout, defaults to empty'
37+
default: ""
38+
required: false
39+
type: string
840
workflow_call:
941
inputs:
1042
os:

0 commit comments

Comments
 (0)