File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 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 : |
You can’t perform that action at this time.
0 commit comments