Skip to content

Commit 3d845f1

Browse files
committed
Add regression.out cat
1 parent b2d8d00 commit 3d845f1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build-cloudberry-rocky8.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,6 +1520,18 @@ jobs:
15201520
15211521
exit $overall_status
15221522
1523+
- name: Check and Display Regression Diffs
1524+
if: always()
1525+
run: |
1526+
# Search for regression.diffs recursively
1527+
found_file=$(find . -type f -name "regression.diffs" | head -n 1)
1528+
if [[ -n "$found_file" ]]; then
1529+
echo "Found regression.diffs at: $found_file"
1530+
cat "$found_file"
1531+
else
1532+
echo "No regression.diffs file found in the hierarchy."
1533+
fi
1534+
15231535
- name: "Check for core dumps: ${{ matrix.test }}"
15241536
id: check-cores
15251537
if: always()

0 commit comments

Comments
 (0)