File tree Expand file tree Collapse file tree 5 files changed +25
-25
lines changed
actions/llm/download-llm-binary Expand file tree Collapse file tree 5 files changed +25
-25
lines changed Original file line number Diff line number Diff line change 10
10
using : " composite"
11
11
steps :
12
12
- name : Download all build files
13
- uses : actions/download-artifact@v3
13
+ uses : actions/download-artifact@4.1.7
14
14
- name : Move build resources
15
15
shell : bash
16
16
run : |
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ permissions:
12
12
on :
13
13
# schedule:
14
14
# - cron: "00 15 * * *" # GMT time, 15:00 GMT == 23:00 Beijing Time
15
- pull_request :
16
- branches : [main]
17
- paths :
18
- - " .github/workflows/llm-c-evaluation.yml"
15
+ # pull_request:
16
+ # branches: [main]
17
+ # paths:
18
+ # - ".github/workflows/llm-c-evaluation.yml"
19
19
# Allows you to run this workflow manually from the Actions tab
20
20
workflow_dispatch :
21
21
inputs :
@@ -204,7 +204,7 @@ jobs:
204
204
pip install pandas==1.5.3
205
205
206
206
- name : Download ceval results
207
- uses : actions/download-artifact@v3
207
+ uses : actions/download-artifact@4.1.7
208
208
with :
209
209
name : ceval_results
210
210
path : results
@@ -259,7 +259,7 @@ jobs:
259
259
fi
260
260
261
261
- name : Download ceval results
262
- uses : actions/download-artifact@v3
262
+ uses : actions/download-artifact@4.1.7
263
263
with :
264
264
name : results_${{ needs.set-matrix.outputs.date }}
265
265
path : ${{ env.ACC_FOLDER }}
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ permissions:
12
12
on :
13
13
# schedule:
14
14
# - cron: "30 12 * * *" # GMT time, 12:30 GMT == 20:30 China
15
- pull_request :
16
- branches : [main]
17
- paths :
18
- - " .github/workflows/llm-harness-evaluation.yml"
15
+ # pull_request:
16
+ # branches: [main]
17
+ # paths:
18
+ # - ".github/workflows/llm-harness-evaluation.yml"
19
19
# Allows you to run this workflow manually from the Actions tab
20
20
workflow_dispatch :
21
21
inputs :
@@ -220,7 +220,7 @@ jobs:
220
220
pip install --upgrade pip
221
221
pip install jsonlines pytablewriter regex
222
222
- name : Download all results
223
- uses : actions/download-artifact@v3
223
+ uses : actions/download-artifact@4.1.7
224
224
with :
225
225
name : harness_results
226
226
path : results
@@ -260,7 +260,7 @@ jobs:
260
260
fi
261
261
262
262
- name : Download harness results
263
- uses : actions/download-artifact@v3
263
+ uses : actions/download-artifact@4.1.7
264
264
with :
265
265
name : harness_results
266
266
path : ${{ env.ACC_FOLDER}}/${{ env.DATE }}
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ permissions:
12
12
on :
13
13
# schedule:
14
14
# - cron: "00 12 * * *" # GMT time, 12:00 GMT == 20:00 China
15
- pull_request :
16
- branches : [main]
17
- paths :
18
- - " .github/workflows/llm-ppl-evaluation.yml"
15
+ # pull_request:
16
+ # branches: [main]
17
+ # paths:
18
+ # - ".github/workflows/llm-ppl-evaluation.yml"
19
19
# Allows you to run this workflow manually from the Actions tab
20
20
workflow_dispatch :
21
21
inputs :
@@ -206,7 +206,7 @@ jobs:
206
206
pip install --upgrade pip
207
207
pip install jsonlines pytablewriter regex
208
208
- name : Download all results
209
- uses : actions/download-artifact@v3
209
+ uses : actions/download-artifact@4.1.7
210
210
with :
211
211
name : ppl_results
212
212
path : results
@@ -245,7 +245,7 @@ jobs:
245
245
fi
246
246
247
247
- name : Download ppl results
248
- uses : actions/download-artifact@v3
248
+ uses : actions/download-artifact@4.1.7
249
249
with :
250
250
name : ppl_results
251
251
path : ${{ env.ACC_FOLDER}}/${{ env.DATE }}
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ permissions:
12
12
on :
13
13
# schedule:
14
14
# - cron: "00 13 * * *" # GMT time, 13:00 GMT == 21:00 China
15
- pull_request :
16
- branches : [main]
17
- paths :
18
- - " .github/workflows/llm-whisper-evaluation.yml"
15
+ # pull_request:
16
+ # branches: [main]
17
+ # paths:
18
+ # - ".github/workflows/llm-whisper-evaluation.yml"
19
19
# Allows you to run this workflow manually from the Actions tab
20
20
workflow_dispatch :
21
21
inputs :
@@ -176,14 +176,14 @@ jobs:
176
176
177
177
- name : Download all results for nightly run
178
178
if : github.event_name == 'schedule'
179
- uses : actions/download-artifact@v3
179
+ uses : actions/download-artifact@4.1.7
180
180
with :
181
181
name : whisper_results
182
182
path : ${{ env.NIGHTLY_FOLDER}}/${{ env.OUTPUT_PATH }}
183
183
184
184
- name : Download all results for pr run
185
185
if : github.event_name == 'pull_request'
186
- uses : actions/download-artifact@v3
186
+ uses : actions/download-artifact@4.1.7
187
187
with :
188
188
name : whisper_results
189
189
path : ${{ env.PR_FOLDER}}/${{ env.OUTPUT_PATH }}
You can’t perform that action at this time.
0 commit comments