This is an automated email from the ASF dual-hosted git repository. leborchuk pushed a commit to branch PG14_ARCHIVE_REBASED in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit 60a85c36509c87cd9443485c3b6c55ab3d7fde9c Author: copilot-swe-agent[bot] <[email protected]> AuthorDate: Fri Jun 19 12:37:48 2026 +0000 Fix Yezzey CI shell for pipefail steps --- .github/workflows/yezzey-ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/yezzey-ci.yaml b/.github/workflows/yezzey-ci.yaml index 9913a6196c7..82511c4f701 100644 --- a/.github/workflows/yezzey-ci.yaml +++ b/.github/workflows/yezzey-ci.yaml @@ -127,6 +127,7 @@ jobs: echo "SRC_DIR=${GITHUB_WORKSPACE}" | tee -a "$GITHUB_ENV" - name: Install MinIO Client (mc) + shell: bash run: | set -exo pipefail # Download mc for Linux (amd64) @@ -135,6 +136,7 @@ jobs: sudo mv mc /usr/local/bin/mc # Make mc available system-wide - name: Configure MinIO service + shell: bash run: | set -exo pipefail # Add the MinIO service as an "alias" in mc (name it "minio-ci") @@ -331,4 +333,3 @@ jobs: echo "Timestamp: $(date -u +'%Y-%m-%d %H:%M:%S UTC')" echo "Cloudberry Result: ${{ needs.test-cloudberry.result }}" - --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
