mirror of
https://github.com/uutils/findutils.git
synced 2026-05-06 06:06:46 -04:00
31 lines
846 B
Python
31 lines
846 B
Python
#!/usr/bin/python
|
|
"""
|
|
Compare the current results to the last results gathered from the main branch to highlight
|
|
if a PR is making the results better/worse
|
|
"""
|
|
|
|
import json
|
|
import sys
|
|
|
|
NEW = json.load(open("bfs-result.json"))
|
|
OLD = json.load(open("latest-bfs-result.json"))
|
|
|
|
# Extract the specific results from the dicts
|
|
[last] = OLD.values()
|
|
[current] = NEW.values()
|
|
|
|
pass_d = int(current["pass"]) - int(last["pass"])
|
|
skip_d = int(current["skip"]) - int(last.get("skip", 0))
|
|
fail_d = int(current["fail"]) - int(last["fail"])
|
|
|
|
# Get an annotation to highlight changes
|
|
print(f"::warning ::Changes from main: PASS {pass_d:+d} / SKIP {skip_d:+d} / FAIL {fail_d:+d}")
|
|
|
|
# Check if there are no changes.
|
|
if pass_d == 0:
|
|
print("::warning ::BFS tests No changes")
|
|
|
|
# If results are worse fail the job to draw attention
|
|
if pass_d < 0:
|
|
sys.exit(1)
|