Skip to content

Commit c9dabc7

Browse files
authored
[ci] chore: delete redundant npu ci (verl-project#5259)
### What does this PR do? delete redundant npu ci ### Checklist Before Starting - [ ] Search for similar PRs. Paste at least one query link here: ... - [ ] Format the PR title as `[{modules}] {type}: {description}` (This will be checked by the CI) - `{modules}` include `fsdp`, `megatron`, `veomni`, `sglang`, `vllm`, `rollout`, `trainer`, `ci`, `training_utils`, `recipe`, `hardware`, `deployment`, `ray`, `worker`, `single_controller`, `misc`, `perf`, `model`, `algo`, `env`, `tool`, `ckpt`, `doc`, `data`, `cfg`, `reward` - If this PR involves multiple modules, separate them with `,` like `[megatron, fsdp, doc]` - `{type}` is in `feat`, `fix`, `refactor`, `chore`, `test` - If this PR breaks any API (CLI arguments, config, function signature, etc.), add `[BREAKING]` to the beginning of the title. - Example: `[BREAKING][fsdp, megatron] feat: dynamic batching` ### Test > For changes that can not be tested by CI (e.g., algorithm implementation, new model support), validate by experiment(s) and show results like training curve plots, evaluation results, etc. ### API and Usage Example > Demonstrate how the API changes if any, and provide usage example(s) if possible. ```python # Add code snippet or script demonstrating how to use this ``` ### Design & Code Changes > Demonstrate the high-level design if this PR is complex, and list the specific changes. ### Checklist Before Submitting > [!IMPORTANT] > Please check all the following items before requesting a review, otherwise the reviewer might deprioritize this PR for review. - [ ] Read the [Contribute Guide](https://github.com/volcengine/verl/blob/main/CONTRIBUTING.md). - [ ] Apply [pre-commit checks](https://github.com/volcengine/verl/blob/main/CONTRIBUTING.md#code-linting-and-formatting): `pre-commit install && pre-commit run --all-files --show-diff-on-failure --color=always` - [ ] Add / Update [the documentation](https://github.com/volcengine/verl/tree/main/docs). - [ ] Add unit or end-to-end test(s) to [the CI workflow](https://github.com/volcengine/verl/tree/main/.github/workflows) to cover all the code. If not feasible, explain why: ... - [ ] Once your PR is ready for CI, send a message in [the `ci-request` channel](https://verl-project.slack.com/archives/C091TCESWB1) in [the `verl` Slack workspace](https://join.slack.com/t/verl-project/shared_invite/zt-3855yhg8g-CTkqXu~hKojPCmo7k_yXTQ). (If not accessible, please try [the Feishu group (飞书群)](https://applink.larkoffice.com/client/chat/chatter/add_by_link?link_token=772jd4f1-cd91-441e-a820-498c6614126a).) - [ ] If your PR is related to the `recipe` submodule, please also update the reference to the submodule commit via `git submodule update --remote` or `cd recipe && git pull origin main`.
1 parent 67dc84b commit c9dabc7

File tree

1 file changed

+0
-49
lines changed

1 file changed

+0
-49
lines changed

.github/workflows/e2e_ascend.yml

Lines changed: 0 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -64,55 +64,6 @@ permissions:
6464
contents: read
6565

6666
jobs:
67-
non_rl_job:
68-
if: github.repository_owner == 'verl-project'
69-
name: E2E Ascend testing for non-RL algorithm scenarios
70-
runs-on: linux-aarch64-a2-4
71-
timeout-minutes: 60
72-
container:
73-
image: swr.ap-southeast-1.myhuaweicloud.com/base_image/ascend-ci/verl/verl:verl-8.3.rc1-910b-ubuntu22.04-py3.11-latest
74-
options: >-
75-
--shm-size 16g
76-
env:
77-
HF_ENDPOINT: "https://hf-mirror.com"
78-
HF_HUB_ENABLE_HF_TRANSFER: "0" # This is more stable
79-
steps:
80-
- name: Config third-party dependency download cache
81-
run: |
82-
sed -Ei 's@(ports|archive).ubuntu.com@cache-service.nginx-pypi-cache.svc.cluster.local:8081@g' /etc/apt/sources.list
83-
pip config set global.index-url http://cache-service.nginx-pypi-cache.svc.cluster.local/pypi/simple
84-
pip config set global.trusted-host cache-service.nginx-pypi-cache.svc.cluster.local
85-
- name: Check npu and CANN info
86-
run: |
87-
cat /usr/local/Ascend/ascend-toolkit/latest/"$(uname -i)"-linux/ascend_toolkit_install.info
88-
npu-smi info
89-
- name: Check initial pip list from image
90-
run: |
91-
pip list
92-
- name: Checkout volcengine/verl repo
93-
uses: actions/checkout@v4
94-
with:
95-
fetch-depth: 0
96-
clean: true
97-
- name: Install the current repository
98-
run: |
99-
pip install -r requirements-npu.txt
100-
pip install -e .
101-
- name: Check final pip list
102-
run: |
103-
pip list
104-
- name: Preprocess gsm8k dataset
105-
run: |
106-
python examples/data_preprocess/gsm8k_multiturn_sft.py --local_dataset_path ${HOME}/.cache/datasets/openai/gsm8k
107-
- name: Running gsm8k e2e training tests with peft sft on ASCEND NPU
108-
run: |
109-
ray stop --force
110-
bash tests/special_npu/run_qwen2_5_05b_sft_peft_sp2.sh
111-
- name: Running gsm8k e2e training tests with peft sft on ASCEND NPU (ray mode)
112-
run: |
113-
ray stop --force
114-
mode=ray bash tests/special_npu/run_qwen2_5_05b_sft_peft_sp2.sh
115-
11667
llm_rl_job:
11768
if: github.repository_owner == 'verl-project'
11869
name: E2E Ascend testing for RL training scenarios of LLM models

0 commit comments

Comments
 (0)