Skip to content

Commit 90f9dc3

Browse files
authored
CI: fix 'Check and Display Regression Diffs' step to use bash shell (#1673)
* CI: fix 'Check and Display Regression Diffs' step to use bash shell The step used bash-specific [[ ]] syntax but lacked shell: bash {0}, causing failures when the runner defaulted to sh.
1 parent 32373aa commit 90f9dc3

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1676,6 +1676,7 @@ jobs:
16761676
16771677
- name: Check and Display Regression Diffs
16781678
if: always()
1679+
shell: bash {0}
16791680
run: |
16801681
# Search for regression.diffs recursively
16811682
found_file=$(find . -type f -name "regression.diffs" | head -n 1)

.github/workflows/build-cloudberry.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1679,6 +1679,7 @@ jobs:
16791679
16801680
- name: Check and Display Regression Diffs
16811681
if: always()
1682+
shell: bash {0}
16821683
run: |
16831684
# Search for regression.diffs recursively
16841685
found_file=$(find . -type f -name "regression.diffs" | head -n 1)

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1618,6 +1618,7 @@ jobs:
16181618
16191619
- name: Check and Display Regression Diffs
16201620
if: always()
1621+
shell: bash {0}
16211622
run: |
16221623
# Search for regression.diffs recursively
16231624
found_file=$(find . -type f -name "regression.diffs" | head -n 1)

0 commit comments

Comments
 (0)