From 789eb161ae0ad0acb5de3cac820b23fa9133ecb6 Mon Sep 17 00:00:00 2001 From: Marius Brehler Date: Fri, 10 Jul 2026 17:50:15 +0200 Subject: [PATCH] Disable PyTorch builds in ASAN release wrapper Backport for the 7.14 release branch. Remove the `build_pytorch` dispatch input and hardcode `build_pytorch: false` in the call to TheRock's ASAN release workflow. The previous default of true was incorrect for an ASAN workflow, and the boolean pass-through expression was unreliable. TheRock's ASAN workflow already enforces `build_pytorch: false` and `build_jax: false` internally, so this aligns the rockrel wrapper with that intent. Progress on #6477 Co-Authored-By: Claude --- .github/workflows/multi_arch_release_asan.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/multi_arch_release_asan.yml b/.github/workflows/multi_arch_release_asan.yml index 60fc9a88..c99c75b6 100644 --- a/.github/workflows/multi_arch_release_asan.yml +++ b/.github/workflows/multi_arch_release_asan.yml @@ -35,10 +35,6 @@ on: description: "Run full PyTorch tests after scheduled nightly Linux PyTorch wheel builds complete." type: boolean default: false - build_pytorch: - description: "Build PyTorch wheels" - type: boolean - default: true python_version: description: "Single Python version for wheel builds (empty for full matrix)" type: string @@ -65,7 +61,7 @@ jobs: prerelease_version: ${{ inputs.prerelease_version || '' }} linux_amdgpu_families: ${{ inputs.linux_amdgpu_families || 'all' }} run_full_pytorch_tests: ${{ inputs.run_full_pytorch_tests || github.event_name == 'schedule' }} - build_pytorch: ${{ inputs.build_pytorch == '' && true || inputs.build_pytorch }} + build_pytorch: false python_version: ${{ inputs.python_version || '' }} repository: "ROCm/TheRock" ref: ${{ inputs.ref || '' }}