Skip to content

Commit eb46dbb

Browse files
committed
remove unused step
Signed-off-by: sirutBuasai <sirutbuasai27@outlook.com>
1 parent 71bf8ae commit eb46dbb

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/actions/container-cleanup/action.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ runs:
77
- name: Cleanup container and images
88
shell: bash
99
run: |
10-
run: |
11-
docker rm -f ${CONTAINER_ID} || true
12-
docker image prune -a --force --filter "until=24h"
13-
docker system df
10+
docker rm -f ${CONTAINER_ID} || true
11+
docker image prune -a --force --filter "until=24h"
12+
docker system df

.github/workflows/pr-sglang.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -118,17 +118,10 @@ jobs:
118118
-e HF_TOKEN=${{ secrets.HUGGING_FACE_HUB_TOKEN }} \
119119
${IMAGE_URI})
120120
echo "CONTAINER_ID=$CONTAINER_ID" >> $GITHUB_ENV
121+
echo "Waiting for container startup ..."
121122
sleep 300s
122-
echo "Printing container startup logs ..."
123123
docker logs ${CONTAINER_ID}
124124
125-
- name: Setup for SGLang tests
126-
run: |
127-
docker exec ${CONTAINER_ID} sh -c '
128-
set -eux
129-
# bash scripts/ci/ci_install_dependency.sh
130-
'
131-
132125
- name: Run SGLang tests
133126
run: |
134127
docker exec ${CONTAINER_ID} python3 -m sglang.bench_serving \

0 commit comments

Comments
 (0)