Skip to content

Commit 839d069

Browse files
deafult values for build and trigger workflow
1 parent 849879f commit 839d069

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/build_wheel_windows_arm64.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: torchvision Build
22

33
on:
4+
push:
5+
branches:
6+
- arm64_enablement
47
workflow_dispatch:
58
inputs:
69
python_version:
@@ -21,7 +24,7 @@ on:
2124
pytorch_build_run_id:
2225
description: "PyTorch build run id for downloading the wheel artifact (number at the end of build run URL)"
2326
required: true
24-
default: ""
27+
default: "13589031393"
2528
type: string
2629
pytorch_build_artifact_name:
2730
description: "Artifact name of PyTorch build run"
@@ -53,12 +56,12 @@ on:
5356

5457
jobs:
5558
trigger-test-infra:
56-
uses: alinpahontu2912/test-infra/.github/workflows/build_wheels_windows_arm64.yml@main
59+
uses: alinpahontu2912/test-infra/.github/workflows/build_wheels_windows_arm64.yml@winarm64_wheels
5760
with:
5861
repository_name: ${{ inputs.repository_name }}
5962
repository_branch: ${{ inputs.repository_branch }}
60-
python_version: ${{ inputs.python_version }}
61-
msvc_version: ${{ inputs.msvc_version }}
63+
python_version: ${{ inputs.python_version || 'Python312' }}
64+
msvc_version: ${{ inputs.msvc_version || 'latest' }}
6265
pytorch_build_run_id: ${{ inputs.pytorch_build_run_id }}
63-
build_type: ${{ inputs.build_type }}
66+
build_type: ${{ inputs.build_type || 'Release' }}
6467
build_version: ${{ inputs.build_version }}

0 commit comments

Comments
 (0)