Skip to content

Commit 7cc7ae3

Browse files
plusNew001K11OntheBoat
authored andcommitted
[XPU] Update XPU CI case (PaddlePaddle#3837)
* Add debug environment variable exports Added debug environment variable exports for CLANG_PATH and XVLLM_PATH. * Lock paddlepaddle-xpu version in CI script Temporarily lock paddlepaddle-xpu version due to framework update issues. * Update no_proxy environment variable in CI workflow * Install lsof tool in run_ci_xpu.sh
1 parent f938119 commit 7cc7ae3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci_xpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
-e "MODEL_PATH=/ssd3/model" \
7878
-e "http_proxy=$(git config --global --get http.proxy)" \
7979
-e "https_proxy=$(git config --global --get https.proxy)" \
80-
-e "no_proxy=bcebos.com" \
80+
-e "no_proxy=bcebos.com,mirrors.tuna.tsinghua.edu.cn,127.0.0.1,localhost" \
8181
-e "FD_API_PORT=${FD_API_PORT}" \
8282
-e "FD_ENGINE_QUEUE_PORT=${FD_ENGINE_QUEUE_PORT}" \
8383
-e "FD_METRICS_PORT=${FD_METRICS_PORT}" \

scripts/run_ci_xpu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
33
echo "$DIR"
44

5+
#安装lsof工具
6+
apt install -y lsof
57
#先kill一遍
68
ps -efww | grep -E 'api_server' | grep -v grep | awk '{print $2}' | xargs kill -9 || true
79
ps -efww | grep -E '8188' | grep -v grep | awk '{print $2}' | xargs kill -9 || true

0 commit comments

Comments
 (0)