Skip to content

Commit 63b0238

Browse files
committed
fake testing
Signed-off-by: wangli <wangli858794774@gmail.com>
1 parent 2895418 commit 63b0238

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/nightly_benchmarks.yaml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ on:
2323
# Run at 24:00 everyday
2424
- cron: '00 16 * * *'
2525
workflow_dispatch:
26+
pull_request:
27+
branches:
28+
- 'main'
29+
- '*-dev'
30+
paths:
31+
- '.github/workflows/nightly_benchmarks.yaml'
2632

2733

2834
# Bash shells do not use ~/.profile or ~/.bashrc so these shells need to be explicitly
@@ -119,8 +125,15 @@ jobs:
119125
- name: Collect pr info from vllm-project/vllm-ascend
120126
run: |
121127
# Only get the pull request which may influences performance
122-
git log --pretty=format:"%H %s" -- '**/*.py' ':!docs/*' ':!tests/*' ':!examples/*' > commit_log.txt
123-
escli check commit_log.txt
128+
# git log --pretty=format:"%H %s" -- '**/*.py' ':!docs/*' ':!tests/*' ':!examples/*' > commit_log.txt
129+
# escli check commit_log.txt
130+
131+
# make a fake commit log for testing
132+
printf "%s\n" \
133+
"507ae627cad68d93c62adf3c2409f4ff10a25536 feat: support compile torchair graph while warming up (#839)" \
134+
"5a1689fc648c8afa04ee040bf1b3526a6fe3d75e [Fix] Fix update_aclgraph_sizes when running MoE models (#913)" \
135+
"3442fbdb235b4c6d72c2bc64a49707a7bd89958e [1/N][UT][v1 MTP] add basic v1 mtp features (#890)" \
136+
> commit_log.txt
124137
125138
- name: Run benchmark iteration
126139
run: |

0 commit comments

Comments
 (0)