Skip to content

Commit d753de0

Browse files
committed
add step summary
Signed-off-by: wangli <[email protected]>
1 parent 3f77fa4 commit d753de0

File tree

1 file changed

+18
-20
lines changed

1 file changed

+18
-20
lines changed

.github/workflows/nightly_benchmarks.yaml

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ jobs:
126126
# Convert the benchmark results to markdown format
127127
python3 benchmarks/scripts/convert_json_to_markdown.py
128128
129+
- name: Generate step summary
130+
if: github.event_name != 'schedule'
131+
run: |
132+
cat ./benchmarks/results/benchmark_results.md >> $GITHUB_STEP_SUMMARY
133+
129134
- name: Upload benchmark artifacts
130135
if: github.event_name != 'schedule'
131136
uses: actions/upload-artifact@v4
@@ -136,31 +141,24 @@ jobs:
136141
retention-days: 90
137142
overwrite: true
138143

139-
# - name: Checkout cosdt/elastic-tool
140-
# uses: actions/checkout@v4
141-
# with:
142-
# repository: cosdt/elastic-tool
143-
# path: ./elastic_tool
144-
# ref: 0.1.0-dev
145-
146-
# - name: Install elastic_tool
147-
# working-directory: ./elastic_tool
148-
# run: |
149-
# pip install -e .
144+
- name: Checkout cosdt/elastic-tool
145+
uses: actions/checkout@v4
146+
with:
147+
repository: cosdt/elastic-tool
148+
path: ./elastic_tool
149+
ref: 0.1.0-dev
150+
151+
- name: Install elastic_tool
152+
working-directory: ./elastic_tool
153+
run: |
154+
pip install -e .
150155
151156
- name: Collect pr info from vllm-project/vllm-ascend
152157
if: github.event_name == 'schedule'
153158
run: |
154159
# Only get the pull request which may influences performance
155-
# git log --pretty=format:"%H %s" -- '**/*.py' ':!docs/*' ':!tests/*' ':!examples/*' > commit_log.txt
156-
# escli check commit_log.txt
157-
158-
# make a fake commit log for testing
159-
printf "%s\n" \
160-
"507ae627cad68d93c62adf3c2409f4ff10a25536 feat: support compile torchair graph while warming up (#839)" \
161-
"5a1689fc648c8afa04ee040bf1b3526a6fe3d75e [Fix] Fix update_aclgraph_sizes when running MoE models (#913)" \
162-
"3442fbdb235b4c6d72c2bc64a49707a7bd89958e [1/N][UT][v1 MTP] add basic v1 mtp features (#890)" \
163-
> commit_log.txt
160+
git log --pretty=format:"%H %s" -- '**/*.py' ':!docs/*' ':!tests/*' ':!examples/*' > commit_log.txt
161+
escli check commit_log.txt
164162
165163
- name: Run benchmark iteration
166164
if: github.event_name == 'schedule'

0 commit comments

Comments
 (0)