forked from RLinf/RLinf
-
Notifications
You must be signed in to change notification settings - Fork 3
373 lines (318 loc) · 11.6 KB
/
code-test.yml
File metadata and controls
373 lines (318 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
name: Code Test
on:
push:
branches:
- "release/v[0-9].[0-9]"
- main
pull_request:
branches: [main]
types: [synchronize, labeled]
workflow_dispatch:
concurrency:
group: code-test-${{ github.ref }}
cancel-in-progress: true
jobs:
# =============================================== check changes ====================================================
check-changes:
runs-on: ubuntu-latest
outputs:
file_filter: ${{ steps.filter.outputs.file_filter }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Fail if the PR does not have the 'run-ci' label
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'run-ci')
run: |
echo "This pull request does not have the 'run-ci' label. Failing the workflow."
exit 1
- name: Fail if the PR is a draft
if: github.event_name == 'pull_request' && github.event.pull_request.draft == true
run: |
echo "This pull request is a draft. Failing the workflow."
exit 1
- name: Detect file changes
id: filter
uses: dorny/paths-filter@v3
with:
filters: |
file_filter:
- '**/*.py'
- 'tests/**'
- '.github/workflows/*.yml'
- '!docs/**'
- '!README.md'
- '*.yaml'
- '*.toml'
- '!ray_utils/**'
- '!requirements/**'
# =============================================== unit tests ====================================================
unit-tests-cuda:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: reason
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install pytest
run: |
source switch_env reason
uv pip install pytest
- name: Run pytest
timeout-minutes: 20
run: |
export PYTHONPATH=$(pwd):$(pwd)/megatron:$(pwd)/tests/unit_tests
source switch_env reason
pytest tests/unit_tests
- name: Run doctest
timeout-minutes: 20
run: |
source switch_env reason
pytest --doctest-modules rlinf/scheduler
unit-tests-cpu:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install dependencies
run: |
pip install uv
uv venv
source .venv/bin/activate
UV_TORCH_BACKEND=auto uv sync
uv pip install pytest
- name: Run pytest
timeout-minutes: 20
run: |
export PYTHONPATH=$(pwd):$(pwd)/megatron:$(pwd)/tests/unit_tests
source .venv/bin/activate
pytest tests/unit_tests
# =============================================== reason e2e tests ====================================================
reason-qwen-grpo-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: reason
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Megatron SGLang Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-mg-sgl
- name: Megatron vLLM Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-mg-vllm
- name: Megatron SGLang Pipeline mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-pipeline-mg-sgl
- name: Megatron vLLM Pipeline mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-pipeline-mg-vllm
- name: FSDP SGLang Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-fsdp-sgl
- name: FSDP vLLM Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-fsdp-vllm
reason-qwen-grpo-test-rollout-logprobs:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: reason
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Megatron SGLang Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-mg-sgl-rollout-logprobs
- name: Megatron vLLM Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-mg-vllm-rollout-logprobs
- name: Megatron SGLang Pipeline mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-pipeline-mg-sgl-rollout-logprobs
- name: Megatron vLLM Pipeline mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-pipeline-mg-vllm-rollout-logprobs
- name: FSDP SGLang Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-fsdp-sgl-rollout-logprobs
- name: FSDP vLLM Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-1.5b-grpo-collocated-fsdp-vllm-rollout-logprobs
coding-online-rl-qwen-ppo-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: reason
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install dependencies
run: |
pip install httpx asyncio fuzzywuzzy
- name: SGLang Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/coding_online_rl/run.sh
qwen-vl-grpo-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: reason
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: FSDP SGLang Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-vl-3b-grpo-collocated-fsdp-sgl
- name: FSDP vLLM Collocated mode
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/reasoning/run.sh qwen2.5-vl-3b-grpo-collocated-fsdp-vllm
# =============================================== embodied e2e tests ====================================================
embodied-maniskill-ppo-openvla-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: embodied
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: OpenVLA test
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env openvla
bash tests/e2e_tests/embodied/run.sh maniskill_ppo_openvla
embodied-maniskill-grpo-openvlaoft-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: embodied
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: OpenVLA test
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env openvla-oft
cp -r /workspace/dataset/maniskill_assets/assets ${REPO_PATH}/rlinf/envs/maniskill/
bash tests/e2e_tests/embodied/run.sh maniskill_grpo_openvlaoft
embodied-libero-goal-grpo-openvlaoft-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: embodied
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: OpenVLA-OFT test
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env openvla-oft
bash tests/e2e_tests/embodied/run.sh libero_goal_grpo_openvlaoft
embodied-libero-130-grpo-openvlaoft-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: embodied
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: OpenVLA-OFT test
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env openvla-oft
bash tests/e2e_tests/embodied/run.sh libero_130_grpo_openvlaoft
# =============================================== auto placement tests ====================================================
static-auto-placement-test:
needs: [check-changes]
if: needs.check-changes.outputs.file_filter == 'true'
runs-on: reason
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: auto-placement
timeout-minutes: 20
run: |
export REPO_PATH=$(pwd)
source switch_env reason
bash tests/e2e_tests/auto_placement/run.sh
# =============================================== finale ====================================================
pr-test-finish:
needs: [
check-changes,
# Unit tests
unit-tests-cuda, unit-tests-cpu,
# Reason e2e tests
reason-qwen-grpo-test, reason-qwen-grpo-test-rollout-logprobs,
coding-online-rl-qwen-ppo-test, qwen-vl-grpo-test,
# Embodied e2e tests
embodied-maniskill-ppo-openvla-test, embodied-maniskill-grpo-openvlaoft-test, embodied-libero-goal-grpo-openvlaoft-test,embodied-libero-130-grpo-openvlaoft-test,
# Auto placement tests
static-auto-placement-test
]
if: always()
runs-on: ubuntu-latest
steps:
# Refer to https://github.com/sgl-project/sglang/blob/main/.github/workflows/pr-test.yml
- name: Check all dependent job statuses
run: |
# Convert the 'needs' context to a JSON string
json_needs='${{ toJson(needs) }}'
# Get a list of all job names from the JSON keys
job_names=$(echo "$json_needs" | jq -r 'keys_unsorted[]')
for job in $job_names; do
# For each job, extract its result
result=$(echo "$json_needs" | jq -r --arg j "$job" '.[$j].result')
# Print the job name and its result
echo "$job: $result"
# Check for failure or cancellation and exit if found
if [[ "$result" == "failure" || "$result" == "cancelled" ]]; then
echo "The above jobs failed."
exit 1
fi
done
# If the loop completes, all jobs were successful
echo "All jobs completed successfully"
exit 0