Skip to content

Commit f4a64e3

Browse files
authored
Fix benchmark ci (#4258)
* Fix artifact upload path in performance benchmark workflow
1 parent 0acdaed commit f4a64e3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/perf_benchmark_v2.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ jobs:
8181
GH_CTX_REF_NAME: ${{ github.ref_name }}
8282
GH_CTX_SHA: ${{ github.sha }}
8383
run: |
84-
rm -rf .tox
8584
export TASK="${{ matrix.task }}"
8685
export DATA_ROOT="${{ inputs.data-root }}"
8786
export NUM_REPEAT="${{ inputs.num-repeat }}"

tests/perf_v2/run.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,7 @@
8888
"Please check if the benchmark tests have been run successfully."
8989
)
9090
raise ValueError(msg)
91+
92+
# list all xlsx files under summary_file_root
93+
for xlsx_file in summary_file_root.rglob("*.xlsx"):
94+
logger.info(f"Saved summary to {xlsx_file.resolve()}")

0 commit comments

Comments
 (0)