Add DeepEP to CI PR Test (#5655)

Co-authored-by: Jinyan Chen <jinyanc@nvidia.com>
This commit is contained in:
Jinyan Chen
2025-05-07 08:36:03 +08:00
committed by GitHub
parent aff584fa54
commit 8a828666a3
10 changed files with 1607 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ jobs:
- name: Install dependencies
run: |
bash scripts/ci_install_dependency.sh
bash scripts/ci_install_dependency_8_gpu.sh
- name: Run test
timeout-minutes: 40
@@ -259,9 +259,9 @@ jobs:
finish:
if: always()
needs: [
unit-test-frontend, unit-test-backend-1-gpu, unit-test-backend-2-gpu,
unit-test-frontend, unit-test-backend-1-gpu, unit-test-backend-2-gpu, unit-test-backend-8-gpu,
performance-test-1-gpu-part-1, performance-test-1-gpu-part-2, performance-test-2-gpu,
accuracy-test-1-gpu, accuracy-test-2-gpu
accuracy-test-1-gpu, accuracy-test-2-gpu,
]
runs-on: ubuntu-latest
steps:

View File

@@ -0,0 +1,36 @@
name: Build DeepEP Docker Image
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
build-dev:
if: ${{ github.repository == 'sgl-project/sglang' }}
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Free disk space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
docker-images: false
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: false
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Push DeepEP Image
run: |
docker build . -f docker/Dockerfile.deepep -t lmsysorg/sglang:deepep --no-cache
docker push lmsysorg/sglang:deepep