Add a pure RegressionReport service - #307
Merged
Merged
Conversation
aliceinwire
commented
Aug 14, 2026
Member
- Classifies regressions, fixes, unstable results, persistent failures, new results, and missing results.
- Preserves duplicate executions using occurrence indexes rather than collapsing them into dictionary entries.
- Uses origin, platform, architecture, compiler, configuration, path, and result type as the comparison identity.
- Incorporates Dashboard tree-report classifications for history-aware regression, fixed, and unstable detection.
bhcopeland
reviewed
Aug 24, 2026
bhcopeland
reviewed
Aug 24, 2026
aliceinwire
force-pushed
the
improvements
branch
10 times, most recently
from
September 2, 2026 11:30
e3604c2 to
5021f47
Compare
- Classifies regressions, fixes, unstable results, persistent failures, new results, and missing results. - Preserves duplicate executions using occurrence indexes rather than collapsing them into dictionary entries. - Uses origin, platform, architecture, compiler, configuration, path, and result type as the comparison identity. - Incorporates Dashboard tree-report classifications for history-aware regression, fixed, and unstable detection. Signed-off-by: Arisu Tachibana <arisu.tachibana@miraclelinux.com>
aliceinwire
force-pushed
the
improvements
branch
from
September 2, 2026 11:50
5021f47 to
6e40dd6
Compare
Signed-off-by: Arisu Tachibana <arisu.tachibana@miraclelinux.com>
Signed-off-by: Arisu Tachibana <arisu.tachibana@miraclelinux.com>
…stallation This prevent concurrent pip operations from racing Useful for shared Python environment like GitHub workflow Signed-off-by: Arisu Tachibana <arisu.tachibana@miraclelinux.com>
aliceinwire
force-pushed
the
improvements
branch
from
September 3, 2026 01:58
9f99fdc to
b649995
Compare
Member
Author
|
tested with the following script locally KCI=(poetry run kci-dev)
GITURL=https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
BRANCH=master
mapfile -t commits < <(
"${KCI[@]}" results summary \
--giturl "$GITURL" \
--branch "$BRANCH" \
--history \
--json |
jq -r '(if type == "array" then . else .commits end)[0:2][].git_commit_hash'
)
HEAD=${commits[0]}
BASE=${commits[1]}
printf 'BASE=%s\nHEAD=%s\n' "$BASE" "$HEAD"
echo "#### compare"
"${KCI[@]}" results compare \
--giturl "$GITURL" \
--branch "$BRANCH" \
--format json \
"$BASE" "$HEAD" |
jq .
echo "#### include-issues"
"${KCI[@]}" results compare \
--giturl "$GITURL" \
--branch "$BRANCH" \
--include-issues \
--format json \
"$BASE" "$HEAD" |
jq .
echo "#### gate"
"${KCI[@]}" results gate \
--giturl "$GITURL" \
--branch "$BRANCH" \
--base "$BASE" \
--head "$HEAD" \
--fail-on regression \
--format json |
jq .
echo "#### gate latest"
"${KCI[@]}" results gate \
--giturl "$GITURL" \
--branch "$BRANCH" \
--format json |
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.