Skip to content
This repository has been archived by the owner on Feb 18, 2025. It is now read-only.

Commit

Permalink
[CI]Fix break CI
Browse files Browse the repository at this point in the history
Signed-off-by: wangxiyuan <wangxiyuan1007@gmail.com>
  • Loading branch information
wangxiyuan committed Jan 27, 2025
1 parent 22dd5ae commit 2add9a2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/vllm_ascend_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ jobs:
pip install cmake>=3.26 wheel packaging ninja "setuptools-scm>=8" numpy
pip install -r requirements-dev.txt
# This is the base vllm master code cached in the container to speed up
# the test. There are two branch by default:
# - up-main: the latest code of vllm
# - apply_plugin: the code of vllm with the plugin applied
- name: copy vllm
run: |
cp -r /root/vllm /root/vllm-cpu
Expand All @@ -98,8 +102,14 @@ jobs:
HTTPS_PROXY: ${{ secrets.MY_PROXY }}
# TODO: pull the latest code of vLLM
run: |
git config http.proxy "$HTTPS_PROXY"
git config https.proxy "$HTTPS_PROXY"
git config -l
git checkout up-main
git remote update
git merge up/main
pip install -r requirements-cpu.txt
VLLM_TARGET_DEVICE=cpu python setup.py install
VLLM_TARGET_DEVICE=empty python setup.py install
- name: Install vllm_ascend
run: |
Expand Down

0 comments on commit 2add9a2

Please sign in to comment.