chore: bump triton pin to 2062702ea69d - #631
Merged
Merged
Conversation
The pin PR's Elixir CI downloads triton-prebuilt-<ref> from a release; the previous design opened the PR first, so the release did not exist yet and the triton CI job failed with 'release not found' (the chicken-and-egg between the pin PR and the prebuilt build). The tracker now: - checks the Triton-pinned LLVM archive is actually downloadable (OpenAI's LLVM builds lag Triton main; skip pins whose LLVM is not out); - pushes the pin branch, dispatches Build Triton prebuilt on it, and waits for the build to finish; - only then opens the pin PR, whose CI can download the release. Also drops the redundant triton_ref from upstream-pins.json (triton.json is the single source of truth; the tracker reads it from there).
When the latest Triton main has not moved since a previous run, the pin branch already exists remotely and the tracker's push was rejected. Rebuild the branch from current main and force-push; if a PR for that head already exists, update its body instead of creating a duplicate.
github-actions
Bot
force-pushed
the
agent/upstream-pins-2062702ea69d
branch
from
August 12, 2026 00:30
4b9848a to
2b242e4
Compare
GITHUB_TOKEN cannot create workflow_dispatch events (HTTP 403), so the tracker cannot dispatch the build. Convert triton-prebuilt.yml to a reusable workflow (workflow_call with an optional triton_ref input) and have the tracker call it directly for the new pin before opening the pin PR. The build runs with the caller's token, so no PAT with Actions: write is required; the pin branch is force-updated from main and an existing pin PR is reused (body edited) instead of duplicating.
Latest triton-lang/triton main: 2062702ea69d77cf3b39c32a2eb87cb6b889d0d9. Latest llvm/eudsl asset: mlir_manylinux_x86_64_20260809+9813315f2.tar.gz.
github-actions
Bot
force-pushed
the
agent/upstream-pins-2062702ea69d
branch
from
August 12, 2026 00:33
2b242e4 to
ebaced0
Compare
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.
Tracks the latest OpenAI LLVM (llvm/eudsl) release and the latest Triton pin.
The
triton-prebuilt-2062702ea69drelease was built from this branch before opening the PR, so the Elixir CI can download it. Merging also triggersBuild Triton prebuilt(push to main withtriton.json), which is idempotent.