Skip to content

Commit e2b5c7e

Browse files
authored
ci: fix local benchmark setup (#18309)
1 parent 79d8f07 commit e2b5c7e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/actions/setup_test/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ inputs:
55
description: "default to ./target/${BUILD_PROFILE}/"
66
required: false
77
default: ""
8+
category:
9+
description: "Category to download, only works with s3/gcs"
10+
required: false
11+
default: "full"
812
artifacts:
913
description: "Artifacts to download, only works with s3/gcs"
1014
required: false
@@ -25,7 +29,7 @@ runs:
2529
with:
2630
sha: ${{ github.sha }}
2731
target: ${{ steps.target.outputs.target }}
28-
category: full
32+
category: ${{ inputs.category }}
2933
artifacts: ${{ inputs.artifacts }}
3034
path: ${{ inputs.path }}
3135

.github/workflows/reuse.benchmark.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ jobs:
6565
with:
6666
ref: "refs/pull/${{ inputs.source_id }}/merge"
6767
- uses: ./.github/actions/setup_bendsql
68-
- uses: ./.github/actions/setup_test
68+
- uses: actions/setup-python@v5
69+
with:
70+
python-version: "3.12"
6971
- name: Download artifact
7072
uses: ./.github/actions/artifact_download
7173
with:

0 commit comments

Comments
 (0)