IDE-323CI : fix artifact naming conflicts in reusable workflows#5179
Merged
ratschillerp merged 1 commit intoMar 31, 2026
Merged
Conversation
|
reichli
approved these changes
Mar 30, 2026
reichli
left a comment
Contributor
There was a problem hiding this comment.
Looks good - PR has my approval :)
I looked through the generated reports. Test reports look good, but the coverage reports show 0% everywhere.
But this can be addressed in a follow-up ticket - I suggest we merge this PR.
14 tasks
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.



Description
Jira Ticket: IDE-323
This PR resolves a critical CI pipeline failure where parallel emulator jobs (e.g.,
test-reports,coverage-report) were triggering(409) Conflict: an artifact with this name already existserrors. This issue was introduced following the migration toactions/upload-artifact@v4, which requires unique artifact names within a single workflow run.By replacing the dynamic
${{ github.job }}reference—which resolved to the same internal ID within the reusableemulated_tests.yml—with unique string literals passed as inputs for each job (e.g.,instrumented-unit-tests,rtl-tests), I have ensured that artifacts are correctly uploaded to distinct folders. This satisfies the acceptance criteria of ensuring the CI pipeline completes without 409 errors and that artifacts are easily identifiable in the GitHub Actions summary.Your checklist for this pull request
Please review the contributing guidelines and wiki pages of this repository.