сhore(ci): improve e2e nightly report#2245
Open
universal-itengineer wants to merge 12 commits intomainfrom
Open
сhore(ci): improve e2e nightly report#2245universal-itengineer wants to merge 12 commits intomainfrom
universal-itengineer wants to merge 12 commits intomainfrom
Conversation
5cf8960 to
479344e
Compare
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
5497087 to
32d79af
Compare
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
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
Refactor nested E2E reporting in GitHub Actions by replacing inline shell-based report aggregation with reusable Node.js scripts.
The change introduces dedicated report builders for:
The workflows were updated to install Node.js dependencies, execute the new scripts through
actions/github-script, and pass structured outputs between reusable and matrix workflows.Additional tests and linting configuration were added for the new reporting logic.
Why do we need it, and what problem does it solve?
The previous implementation built E2E summaries with large inline bash scripts in workflows. That approach was hard to maintain, hard to test, and fragile when artifacts were missing or when failures happened before the E2E stage.
This change moves the reporting logic into tested JavaScript modules and makes report generation more deterministic and maintainable. It also improves failure handling by preserving stage-level metadata, distinguishing between test failures and cluster setup failures, and supporting missing-artifact scenarios explicitly.
As a result, nested-cluster E2E reporting becomes easier to extend, easier to validate with unit tests, and more reliable for both successful and failed runs.
What is the expected result?
e2e_report_<storage>.jsonreport based on JUnit XML data or fallback stage metadata.Checklist
Changelog entries