cd: Fix naming for windows arm64 libtorch builds (#150310)

Apparently the magical incantation to name these correctly lies in the
build_variant variable otherwise it silently does nothing.

Signed-off-by: Eli Uriegas <eliuriegas@meta.com>
Pull Request resolved: https://github.com/pytorch/pytorch/pull/150310
Approved by: https://github.com/atalman
This commit is contained in:
Eli Uriegas 2025-03-31 09:03:30 -07:00 committed by PyTorch MergeBot
parent 80b7f6b704
commit dfcd98e684
2 changed files with 3 additions and 2 deletions

View File

@ -294,6 +294,7 @@ WINDOWS_ARM64_BINARY_BUILD_WORKFLOWS = [
BinaryBuildWorkflow(
os=OperatingSystem.WINDOWS_ARM64,
package_type="libtorch",
build_variant=generate_binary_build_matrix.DEBUG,
build_configs=generate_binary_build_matrix.generate_libtorch_matrix(
OperatingSystem.WINDOWS_ARM64,
generate_binary_build_matrix.DEBUG,

View File

@ -2,7 +2,7 @@
# Template is at: .github/templates/windows_arm64_binary_build_workflow.yml.j2
# Generation script: .github/scripts/generate_ci_workflows.py
name: windows-arm64-binary-libtorch
name: windows-arm64-binary-libtorch-debug
on:
push:
@ -17,7 +17,7 @@ on:
workflow_dispatch:
env:
BUILD_ENVIRONMENT: windows-arm64-binary-libtorch
BUILD_ENVIRONMENT: windows-arm64-binary-libtorch-debug
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
SHA1: ${{ github.event.pull_request.head.sha || github.sha }}