[CI] Move yarpgen to standalone workflow#21731
Merged
KornevNikita merged 3 commits intosyclfrom Apr 13, 2026
Merged
Conversation
sarnex
approved these changes
Apr 10, 2026
Contributor
sarnex
left a comment
There was a problem hiding this comment.
only nits, you can merge if we need this soon and address later
| if: inputs.toolchain_run_id != '' | ||
| env: | ||
| GH_TOKEN: ${{ github.token }} | ||
| run: | |
Contributor
There was a problem hiding this comment.
nit: is there a benefit to using gh run instead of the download artifact workflow we usually use?
Contributor
Author
There was a problem hiding this comment.
Yes. We don't build the toolchain in this workflow, and the github action can only download artifacts from the same workflow. The idea is to make the workflow able to download artifacts from another runs, e.g. from nightlys.
| run: | | ||
| cd yarpgen | ||
| # A system hits OOM when using all available threads. | ||
| python3 scripts/run_gen.py --target dpcpp --std sycl -t 60 -j 2 | tee yarpgen_run.log |
Contributor
Author
There was a problem hiding this comment.
Nope, I don't think so
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.
The idea is to make yarpgen a standalone workflow, so it'd possible to launch custom yarpgen runs with other than nightly builds (e.g. release builds).
In general it's a copy-paste of what we had before + some adjustments to make it work with specific artifacts.