Add split build/test callable workflow for validation#1067
Open
Add split build/test callable workflow for validation#1067
Conversation
Icohedron
reviewed
Apr 10, 2026
| DXC/build/bin llvm-project/build | ||
| - name: Upload build artifacts | ||
| if: inputs.OS == 'windows' | ||
| uses: actions/upload-artifact@v4 |
Contributor
There was a problem hiding this comment.
Suggested change
| uses: actions/upload-artifact@v4 | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 |
| Write-Host "DxDiag report saved to $output" | ||
| - name: Upload dxdiag artifact | ||
| if: failure() | ||
| uses: actions/upload-artifact@v4 |
Contributor
There was a problem hiding this comment.
Suggested change
| uses: actions/upload-artifact@v4 | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 |
| # --touch ensures extracted files get current timestamps so ninja | ||
| # sees build outputs as newer than source files (no rebuild). | ||
| - name: Download build artifacts | ||
| uses: actions/download-artifact@v4 |
Contributor
There was a problem hiding this comment.
Suggested change
| uses: actions/download-artifact@v4 | |
| uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 |
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.
Every PR test job holds a GPU runner for the full build+test duration (7–16 min), even though 67–86% of that time is CPU-only DXC/LLVM compilation. With one self-hosted runner per GPU SKU, this means builds block GPU-dependent test work unnecessarily.
This PR adds two new, standalone workflow files — no existing workflows are modified:
build-and-test-split-callable.yaml — A split version of the callable workflow:
validate-split-build-test.yaml — A workflow_dispatch workflow to validate the split callable per-SKU before migrating production workflows.
Fixes #1081
Assisted by: Github Copilot