gw#502: gpu-ci runner fixes — python 3.12 pin + C compiler for triton 3.7 JIT#197
Merged
Conversation
….7 JIT The dep bump surfaced two runner-environment gaps in the FLUX smoke: - runner bakes python 3.11, which no longer satisfies requires-python>=3.12, so job-time uv downloaded CPython 3.14 (untested); pin --python 3.12 and bake 3.12 in the runner image. - triton 3.7 JIT-compiles launcher stubs at runtime and needs a host cc (same reason the conversion image ships gcc); bake gcc/libc6-dev + a job-time apt fallback for pods booted from the pre-gcc image. test_content_lanes tier flake is PRE-EXISTING (identical failure on the five gpu-ci runs before the bump merge) — not addressed here.
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.
Post-merge gpu-ci fallout from #195 (the FLUX smoke step):
requires-python>=3.12— job-time uv silently downloaded CPython 3.14. Fix:uv sync --python 3.12+ bake 3.12 in the runner image.RuntimeError: Failed to find C compilerintriton/runtime/build.pyduring generation. Fix: gcc/libc6-dev baked into the runner image + a job-time apt fallback (covers the rebuild race on this same push).NOT addressed:
test_content_lanes::test_lane_swap_moves_only_the_exclusive_module(Tier.VRAM vs RAM) — pre-existing, identical on the five master gpu-ci runs BEFORE the dep bump merged.🤖 Generated with Claude Code