We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1fa811 commit d17809cCopy full SHA for d17809c
1 file changed
.github/workflows/build-cloudberry-rocky8.yml
@@ -1520,6 +1520,18 @@ jobs:
1520
1521
exit $overall_status
1522
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
+
1535
- name: "Check for core dumps: ${{ matrix.test }}"
1536
id: check-cores
1537
if: always()
0 commit comments