Skip to content

Commit 62dcca8

Browse files
committed
Run report on performance-regressions failure
1 parent d3f6d48 commit 62dcca8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/performance-regressions.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,11 @@ jobs:
6969
7070
- name: Enforce suite gate
7171
if: always() && steps.performance_suite.outcome != 'success'
72-
run: exit 1
72+
shell: bash
73+
run: |
74+
if [ -f performance-results.json ]; then
75+
target/release/cap-test report performance-results.json
76+
else
77+
echo "performance-results.json not found"
78+
fi
79+
exit 1

0 commit comments

Comments
 (0)