ci: Disable PyTorch and JAX builds in ASAN release workflow#6479
Open
marbre wants to merge 1 commit into
Open
Conversation
Backport of the ASAN-specific parts of #6082 and #6270 for the 7.14 release branch. Rather than cherry-picking those commits wholesale (which would pull in setup_multi_arch.yml and configure_multi_arch_ci.py changes that depend on main-only infrastructure), this is a scoped backport that hardcodes `build_pytorch: false` and `build_jax: false` directly in multi_arch_release_asan.yml instead of threading them through setup as inputs. Changes: - multi_arch_release_asan.yml: default `build_pytorch` to false for `workflow_call`; hardcode `build_pytorch: false` and `build_jax: false` when calling multi_arch_release_linux.yml - multi_arch_release_linux.yml: add `build_jax` input (default true) and gate `trigger_release_jax_wheels` on `inputs.build_jax != false` Progress on #6477 Co-Authored-By: Claude <noreply@anthropic.com>
geomin12
approved these changes
Jul 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Backport of the ASAN-specific parts of #6082 and #6270 for the 7.14 release branch. Rather than cherry-picking those commits wholesale (which would pull in setup_multi_arch.yml and configure_multi_arch_ci.py changes that depend on main-only infrastructure), this is a scoped backport that hardcodes
build_pytorch: falseandbuild_jax: falsedirectly in multi_arch_release_asan.yml instead of threading them through setup as inputs.Technical Details
Changes:
build_pytorchto false forworkflow_call; hardcodebuild_pytorch: falseandbuild_jax: falsewhen calling multi_arch_release_linux.ymlbuild_jaxinput (default true) and gatetrigger_release_jax_wheelsoninputs.build_jax != falseProgress on #6477
Submission Checklist