Skip to content

Commit 9a5c512

Browse files
authored
fix(ci): wire stage matrix size into runtime (#19606)
* fix(ci): wire stage matrix size into runtime (#19598) * test: fix sqllogic stage large expectations * test: revert incorrect parquet metadata expectations
1 parent 8ec3967 commit 9a5c512

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/actions/test_sqllogic_stage/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ inputs:
1717
description: "path type for dedup when copy, choices: full_path,sub_path"
1818
required: true
1919
default: ""
20+
size:
21+
description: "stage parquet read size mode, choices: small,large"
22+
required: true
23+
default: ""
2024
runs:
2125
using: "composite"
2226
steps:
@@ -34,4 +38,5 @@ runs:
3438
TEST_HANDLERS: ${{ inputs.handlers }}
3539
TEST_STAGE_STORAGE: ${{ inputs.storage }}
3640
TEST_STAGE_DEDUP: ${{ inputs.dedup}}
41+
TEST_STAGE_SIZE: ${{ inputs.size }}
3742
run: bash ./scripts/ci/ci-run-sqllogic-tests-without-sandbox.sh ${{ inputs.dirs }}

.github/workflows/reuse.sqllogic.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,7 @@ jobs:
323323
dirs: stage
324324
handlers: ${{ matrix.handler }}
325325
dedup: ${{ matrix.dedup }}
326+
size: ${{ matrix.size }}
326327
- name: Upload failure
327328
if: failure()
328329
uses: ./.github/actions/artifact_failure

0 commit comments

Comments
 (0)