Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/scripts/test-results.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ yq -p=xml -o=json \
"workflow_run_link": strenv(WORKFLOW_RUN_LINK),
"workflow_head_branch": strenv(WORKFLOW_HEAD_BRANCH),
"workflow_retry_number": (strenv(WORKFLOW_RUN_NUMBER) | tonumber),
"commit_sha": strenv(COMMIT_SHA)
"commit_sha": strenv(COMMIT_SHA),
"compatibility_matrix_id": (strenv(COMBINATION_ID) | select(. != "") // null)
} |
select(.suite_name != null)
' \
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,9 @@ jobs:
WORKFLOW_RUN_LINK: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
WORKFLOW_HEAD_BRANCH: ${{ github.head_ref || github.ref_name }}
WORKFLOW_RUN_NUMBER: ${{ github.run_attempt }}
COMMIT_SHA: ${{ github.sha }}
COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
SUMMARY_HEADER: "x-clickhouse-summary"
COMBINATION_ID: "pg${{ matrix.db-version.pg }}-my${{ matrix.db-version.mysql }}-mo${{ matrix.db-version.mongo }}"
Comment thread
pfcoperez marked this conversation as resolved.
Outdated
run: |
if [ -z "${{ secrets.CI_O11Y_TARGET_API_KEY_ID }}" ] \
|| [ -z "${{ secrets.CI_O11Y_TARGET_API_KEY_SECRET }}" ] \
Expand Down
Loading