Skip to content

Commit f1e8ba1

Browse files
committed
chore(dev): fix benchmark CI about py-binding artifact
Previously, the glob patterns used to handle the py-binding artifacts were not concise enough to identify the CPython wheel. This resulted in incorrectly trying to install the PyPy wheel that was uploaded with the CPython wheel as build artifacts.
1 parent b15dcfe commit f1e8ba1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
uses: actions/upload-artifact@v5
9494
with:
9595
name: wheel
96-
path: dist/*
96+
path: dist/cpp-linter-*-cp3*-abi3*.whl
9797

9898
benchmark:
9999
name: Measure Performance Difference
@@ -132,7 +132,7 @@ jobs:
132132
shell: nu {0}
133133
run: |-
134134
let new_py = (
135-
glob "../wheel/cpp_linter-*.whl"
135+
glob "../wheel/cpp_linter-*-cp3*-abi3-*.whl"
136136
| first
137137
| path expand
138138
)

0 commit comments

Comments
 (0)